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-- chgrp() with NULL as group name --SKIPIF-- <?php if(substr(PHP_OS, 0, 3) == "WIN"..
Decoded Output download
--TEST--
chgrp() with NULL as group name
--SKIPIF--
<?php
if(substr(PHP_OS, 0, 3) == "WIN")
die("skip, not supported on Windows");
?>
--FILE--
<?php
try {
chgrp("sjhgfskhagkfdgskjfhgskfsdgfkdsajf", 0);
} catch (TypeError $exception) {
echo $exception->getMessage() . "
";
}
?>
--EXPECTF--
Warning: chgrp(): No such file or directory in %s on line %d
Did this file decode correctly?
Original Code
--TEST--
chgrp() with NULL as group name
--SKIPIF--
<?php
if(substr(PHP_OS, 0, 3) == "WIN")
die("skip, not supported on Windows");
?>
--FILE--
<?php
try {
chgrp("sjhgfskhagkfdgskjfhgskfsdgfkdsajf", 0);
} catch (TypeError $exception) {
echo $exception->getMessage() . "\n";
}
?>
--EXPECTF--
Warning: chgrp(): No such file or directory in %s on line %d
Function Calls
None |
Stats
MD5 | 12ac397e9207c23dbac1e3a4ecd21217 |
Eval Count | 0 |
Decode Time | 101 ms |