156 |
157 |
161 |
162 |
$= esc($var) ?>
163 |
164 |
165 |
166 |
167 | | Key |
168 | Value |
169 |
170 |
171 |
172 | $value) : ?>
173 |
174 | | = esc($key) ?> |
175 |
176 |
177 | = esc($value) ?>
178 |
179 | = esc(print_r($value, true)) ?>
180 |
181 | |
182 |
183 |
184 |
185 |
186 |
187 |
188 |
189 |
190 |
191 |
192 |
Constants
193 |
194 |
195 |
196 |
197 | | Key |
198 | Value |
199 |
200 |
201 |
202 | $value) : ?>
203 |
204 | | = esc($key) ?> |
205 |
206 |
207 | = esc($value) ?>
208 |
209 | = esc(print_r($value, true)) ?>
210 |
211 | |
212 |
213 |
214 |
215 |
216 |
217 |
221 |
222 |
223 |
224 |
225 |
226 | | Path |
227 | = esc($request->getUri()) ?> |
228 |
229 |
230 | | HTTP Method |
231 | = esc(strtoupper($request->getMethod())) ?> |
232 |
233 |
234 | | IP Address |
235 | = esc($request->getIPAddress()) ?> |
236 |
237 |
238 | | Is AJAX Request? |
239 | = $request->isAJAX() ? 'yes' : 'no' ?> |
240 |
241 |
242 | | Is CLI Request? |
243 | = $request->isCLI() ? 'yes' : 'no' ?> |
244 |
245 |
246 | | Is Secure Request? |
247 | = $request->isSecure() ? 'yes' : 'no' ?> |
248 |
249 |
250 | | User Agent |
251 | = esc($request->getUserAgent()->getAgentString()) ?> |
252 |
253 |
254 |
255 |
256 |
257 |
258 |
259 |
260 |
264 |
265 |
266 |
267 |
$= esc($var) ?>
268 |
269 |
270 |
271 |
272 | | Key |
273 | Value |
274 |
275 |
276 |
277 | $value) : ?>
278 |
279 | | = esc($key) ?> |
280 |
281 |
282 | = esc($value) ?>
283 |
284 | = esc(print_r($value, true)) ?>
285 |
286 | |
287 |
288 |
289 |
290 |
291 |
292 |
293 |
294 |
295 |
296 |
297 | No $_GET, $_POST, or $_COOKIE Information to show.
298 |
299 |
300 |
301 |
302 | headers(); ?>
303 |
304 |
305 |
Headers
306 |
307 |
308 |
309 |
310 | | Header |
311 | Value |
312 |
313 |
314 |
315 |
316 |
317 | | = esc($header->getName(), 'html') ?> |
318 | = esc($header->getValueLine(), 'html') ?> |
319 |
320 |
321 |
322 |
323 |
324 |
325 |
326 |
327 |
328 | setStatusCode(http_response_code());
331 | ?>
332 |
333 |
334 |
335 | | Response Status |
336 | = esc($response->getStatusCode() . ' - ' . $response->getReasonPhrase()) ?> |
337 |
338 |
339 |
340 | headers(); ?>
341 |
342 |
343 |
344 |
Headers
345 |
346 |
347 |
348 |
349 | | Header |
350 | Value |
351 |
352 |
353 |
354 |
355 |
356 | | = esc($name, 'html') ?> |
357 | = esc($response->getHeaderLine($name), 'html') ?> |
358 |
359 |
360 |
361 |
362 |
363 |
364 |