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 declare(strict_types=1); namespace Swoole\Coroutine; class Channel { public $..
Decoded Output download
<?php
declare(strict_types=1);
namespace Swoole\Coroutine;
class Channel
{
public $capacity = 0;
public $errCode = 0;
public function __construct($size = null) {}
/**
* @param mixed $data
* @param mixed|null $timeout
* @return mixed
*/
public function push($data, $timeout = null) {}
/**
* @param mixed|null $timeout
* @return mixed
*/
public function pop($timeout = null) {}
/**
* @return mixed
*/
public function isEmpty() {}
/**
* @return mixed
*/
public function isFull() {}
/**
* @return mixed
*/
public function close() {}
/**
* @return mixed
*/
public function stats() {}
/**
* @return mixed
*/
public function length() {}
}
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
namespace Swoole\Coroutine;
class Channel
{
public $capacity = 0;
public $errCode = 0;
public function __construct($size = null) {}
/**
* @param mixed $data
* @param mixed|null $timeout
* @return mixed
*/
public function push($data, $timeout = null) {}
/**
* @param mixed|null $timeout
* @return mixed
*/
public function pop($timeout = null) {}
/**
* @return mixed
*/
public function isEmpty() {}
/**
* @return mixed
*/
public function isFull() {}
/**
* @return mixed
*/
public function close() {}
/**
* @return mixed
*/
public function stats() {}
/**
* @return mixed
*/
public function length() {}
}
Function Calls
None |
Stats
MD5 | 0e233ce6a2c456b01e2a17a803be3e98 |
Eval Count | 0 |
Decode Time | 75 ms |