Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
--TEST-- Test getcwd() function : basic functionality --FILE-- <?php /* * Test basic func..
Decoded Output download
*** Testing getcwd() : basic functionality ***
Did this file decode correctly?
Original Code
--TEST--
Test getcwd() function : basic functionality
--FILE--
<?php
/*
* Test basic functionality of getcwd()
*/
echo "*** Testing getcwd() : basic functionality ***\n";
//create temporary directory for test, removed in CLEAN section
$directory = __DIR__ . "/getcwd_basic";
mkdir($directory);
var_dump(getcwd());
chdir($directory);
var_dump(getcwd());
?>
--CLEAN--
<?php
$directory = __DIR__ . "/getcwd_basic";
rmdir($directory);
?>
--EXPECTF--
*** Testing getcwd() : basic functionality ***
string(%d) "%s"
string(%d) "%s%egetcwd_basic"
Function Calls
None |
Stats
MD5 | 575cc1b73c9ae3637683d59bb0d1891a |
Eval Count | 0 |
Decode Time | 94 ms |