mirror of
https://github.com/php/presentations.git
synced 2026-03-24 07:32:11 +01:00
10 lines
213 B
PHP
10 lines
213 B
PHP
<?php
|
|
// make output readable in a web-browser
|
|
var_dump('<pre>', $variable, '</pre>');
|
|
|
|
// Use JavaScript comments to hide debug output
|
|
// from the users
|
|
echo "\n<!--\n";
|
|
print_r($array);
|
|
echo "\n-->\n";
|
|
?>
|