test
This commit is contained in:
parent
29a88fc652
commit
6ada877b7f
5 changed files with 100 additions and 0 deletions
17
test/debug.php
Executable file
17
test/debug.php
Executable 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');
|
||||
|
||||
?>
|
Loading…
Add table
Add a link
Reference in a new issue