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 namespace Concurrent; Task::asyncWithContext(Context::background(), function () { ..

Decoded Output download

<?php

namespace Concurrent;

Task::asyncWithContext(Context::background(), function () {
    for ($i = 0; $i < 20; $i++) {
        sleep(1);
        var_dump('B');
    }
});

var_dump('START');

for ($i = 0; $i < 4; $i++) {
    sleep(2);
    var_dump('A');
}

var_dump('END');
 ?>

Did this file decode correctly?

Original Code

<?php

namespace Concurrent;

Task::asyncWithContext(Context::background(), function () {
    for ($i = 0; $i < 20; $i++) {
        sleep(1);
        var_dump('B');
    }
});

var_dump('START');

for ($i = 0; $i < 4; $i++) {
    sleep(2);
    var_dump('A');
}

var_dump('END');

Function Calls

None

Variables

None

Stats

MD5 5665be4c5bda68229c867430293cd594
Eval Count 0
Decode Time 109 ms