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 $poll = uv_fs_poll_init(uv_default_loop()); uv_fs_poll_start($poll,function($rsc,$s..

Decoded Output download

<?php
$poll = uv_fs_poll_init(uv_default_loop());

uv_fs_poll_start($poll,function($rsc,$stat,$p){
    var_dump(1);
    var_dump($p);
    //uv_fs_poll_stop($rsc);
    
}, "/tmp/hoge", 1);

uv_run();
 ?>

Did this file decode correctly?

Original Code

<?php
$poll = uv_fs_poll_init(uv_default_loop());

uv_fs_poll_start($poll,function($rsc,$stat,$p){
    var_dump(1);
    var_dump($p);
    //uv_fs_poll_stop($rsc);
    
}, "/tmp/hoge", 1);

uv_run();

Function Calls

uv_default_loop 1

Variables

None

Stats

MD5 89cd92d3caedb04bc2b8177ed0180f63
Eval Count 0
Decode Time 112 ms