mirror of
https://github.com/glmdev/eecs448-lab10
synced 2024-10-27 19:14:00 +00:00
9 lines
121 B
PHP
9 lines
121 B
PHP
|
<?php
|
||
|
|
||
|
function dd($something) {
|
||
|
echo "<pre><code>";
|
||
|
var_dump($something);
|
||
|
echo "</code></pre>";
|
||
|
exit;
|
||
|
}
|