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 looping assert (pass) --INI-- zend.assertions=1 assert.exception=1 --FILE-- ..
Decoded Output download
--TEST--
test looping assert (pass)
--INI--
zend.assertions=1
assert.exception=1
--FILE--
<?php
for($i=0; $i<100000; $i++) {
assert ($i < 100000, "The universe should make sense");
}
var_dump(true);
?>
--EXPECT--
bool(true)
Did this file decode correctly?
Original Code
--TEST--
test looping assert (pass)
--INI--
zend.assertions=1
assert.exception=1
--FILE--
<?php
for($i=0; $i<100000; $i++) {
assert ($i < 100000, "The universe should make sense");
}
var_dump(true);
?>
--EXPECT--
bool(true)
Function Calls
assert | 1 |
Stats
MD5 | 1602ff8b1329a28989a83333e0f2c975 |
Eval Count | 0 |
Decode Time | 316 ms |