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 uv_fs_open(uv_default_loop(),__FILE__, UV::O_RDONLY, 0, function($r){ uv_fs_read..
Decoded Output download
<?php
uv_fs_open(uv_default_loop(),__FILE__, UV::O_RDONLY, 0, function($r){
uv_fs_read(uv_default_loop(),$r,function($stream, $nread, $data) {
if ($nread <= 0) {
if ($nread < 0) {
throw new Exception("read error");
}
uv_fs_close(uv_default_loop(), $stream, function(){
});
} else {
echo $data;
}
});
});
uv_run();
?>
Did this file decode correctly?
Original Code
<?php
uv_fs_open(uv_default_loop(),__FILE__, UV::O_RDONLY, 0, function($r){
uv_fs_read(uv_default_loop(),$r,function($stream, $nread, $data) {
if ($nread <= 0) {
if ($nread < 0) {
throw new Exception("read error");
}
uv_fs_close(uv_default_loop(), $stream, function(){
});
} else {
echo $data;
}
});
});
uv_run();
Function Calls
| uv_default_loop | 1 |
Stats
| MD5 | 6dd5d271bdaec2306c5a40d268088fb9 |
| Eval Count | 0 |
| Decode Time | 90 ms |