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 /** * Created by IntelliJ IDEA. * User: winglechen * Date: 15/11/13 * Time: 11:3..
Decoded Output download
<?php
/**
* Created by IntelliJ IDEA.
* User: winglechen
* Date: 15/11/13
* Time: 11:38
*/
namespace Zan\Framework\Test\Foundation\Coroutine\Task;
class WaitJob {
public function run() {
$data = (yield parallel([
'a' => $this->asyncSeviceCall1(),
'b' => $this->asyncSeviceCall2(),
]));
$a = $data['a'];
$b = $data['b'];
}
public function asyncSeviceCall1() {
yield;
}
public function asyncSeviceCall2() {
yield;
}
}
function parallel($callMaps) {
yield;
} ?>
Did this file decode correctly?
Original Code
<?php
/**
* Created by IntelliJ IDEA.
* User: winglechen
* Date: 15/11/13
* Time: 11:38
*/
namespace Zan\Framework\Test\Foundation\Coroutine\Task;
class WaitJob {
public function run() {
$data = (yield parallel([
'a' => $this->asyncSeviceCall1(),
'b' => $this->asyncSeviceCall2(),
]));
$a = $data['a'];
$b = $data['b'];
}
public function asyncSeviceCall1() {
yield;
}
public function asyncSeviceCall2() {
yield;
}
}
function parallel($callMaps) {
yield;
}
Function Calls
None |
Stats
MD5 | 90c5ca940e438d884353ac448e822959 |
Eval Count | 0 |
Decode Time | 188 ms |