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-- Check for eio_cancel function basic behaviour --FILE-- <?php //error_reporting(0)..

Decoded Output download

--TEST--
Check for eio_cancel function basic behaviour
--FILE--
<?php
//error_reporting(0);

function my_nop_cb($data, $result) {
	echo "my_nop";
}



$req = eio_nop(EIO_PRI_DEFAULT, "my_nop_cb", NULL);
var_dump($req);
eio_cancel($req);
eio_nop(EIO_PRI_DEFAULT, "my_nop_cb", NULL);
eio_event_loop();
?>
--CLEAN--
--EXPECTF--
resource(%i) of type (EIO Request Descriptor)
my_nop

Did this file decode correctly?

Original Code

--TEST--
Check for eio_cancel function basic behaviour
--FILE--
<?php
//error_reporting(0);

function my_nop_cb($data, $result) {
	echo "my_nop";
}



$req = eio_nop(EIO_PRI_DEFAULT, "my_nop_cb", NULL);
var_dump($req);
eio_cancel($req);
eio_nop(EIO_PRI_DEFAULT, "my_nop_cb", NULL);
eio_event_loop();
?>
--CLEAN--
--EXPECTF--
resource(%i) of type (EIO Request Descriptor)
my_nop

Function Calls

None

Variables

None

Stats

MD5 68e4bd4ee3be3468aee1e219214214c4
Eval Count 0
Decode Time 335 ms