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-- array stream_get_wrappers ( void ); --CREDITS-- marcosptf - <[email protected]...

Decoded Output download

--TEST--
array stream_get_wrappers ( void );
--CREDITS--
marcosptf - <[email protected]> - #phparty7 - @phpsp - novatec/2015 - sao paulo - br
--FILE--
<?php
print((is_array(stream_get_wrappers())) ? ("yes") : ("Test 'array stream_get_wrappers ( void );' has failed"));
echo "
";
class Foo { }
stream_wrapper_register("foo", "Foo");
var_dump(in_array("foo", stream_get_wrappers()));
?>
--EXPECT--
yes
bool(true)

Did this file decode correctly?

Original Code

--TEST--
array stream_get_wrappers ( void );
--CREDITS--
marcosptf - <[email protected]> - #phparty7 - @phpsp - novatec/2015 - sao paulo - br
--FILE--
<?php
print((is_array(stream_get_wrappers())) ? ("yes") : ("Test 'array stream_get_wrappers ( void );' has failed"));
echo "\n";
class Foo { }
stream_wrapper_register("foo", "Foo");
var_dump(in_array("foo", stream_get_wrappers()));
?>
--EXPECT--
yes
bool(true)

Function Calls

stream_get_wrappers 1

Variables

None

Stats

MD5 2c064916a01cb8d4c80b850ff60ccff0
Eval Count 0
Decode Time 87 ms