1
0
mirror of https://github.com/glmdev/eecs448-lab10 synced 2026-03-02 03:39:24 +00:00
Files
eecs448-lab10/common/functions_debugging.php

9 lines
121 B
PHP
Raw Normal View History

2020-12-06 13:58:02 -06:00
<?php
function dd($something) {
echo "<pre><code>";
var_dump($something);
echo "</code></pre>";
exit;
}