Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php $timer = uv_timer_init(); $stat = array(); $stat['begin'] = memory_get_usage(); uv..

Decoded Output download

<?php
$timer = uv_timer_init();

$stat = array();
$stat['begin'] = memory_get_usage();

uv_timer_start($timer, 10, 1000, function($stat, $timer) use (&$stat){
    $stat["current"] = memory_get_usage();
    printf("memory: %d
", $stat["current"] - $stat['begin']);
}); ?>

Did this file decode correctly?

Original Code

<?php
$timer = uv_timer_init();

$stat = array();
$stat['begin'] = memory_get_usage();

uv_timer_start($timer, 10, 1000, function($stat, $timer) use (&$stat){
    $stat["current"] = memory_get_usage();
    printf("memory: %d\n", $stat["current"] - $stat['begin']);
});

Function Calls

uv_timer_init 1

Variables

None

Stats

MD5 1c5b481c57530df0dfb2fbaad99eeb3a
Eval Count 0
Decode Time 80 ms