This commit is contained in:
Marc Beninca 2021-04-05 11:31:51 +02:00
parent 29a88fc652
commit 6ada877b7f
5 changed files with 100 additions and 0 deletions

17
test/debug.php Executable file
View file

@ -0,0 +1,17 @@
<?php
echo('<h1>PHP</h1>');
echo('<h2>getenv()</h2>');
echo('<table>');
foreach (getenv() as $k => $v)
echo("<tr><td>$k</td><td>$v</td></tr>");
echo('</table>');
echo(getcwd());
echo('<hr />');
require(dirname(__FILE__).'/web.php');
?>