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 /** * This file is part of the reliforp/reli-prof package. * * (c) sji <sji@sj-i..
Decoded Output download
<?php
/**
* This file is part of the reliforp/reli-prof package.
*
* (c) sji <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Reli\Lib\PhpInternals\Types\Zend;
use FFI\CData;
use FFI\PhpInternals\zend_value_ww;
class ZendValueWw
{
public int $w1;
public int $w2;
/** @param zend_value_ww $cdata */
public function __construct(
private CData $cdata,
) {
$this->w1 = $this->cdata->w1;
$this->w2 = $this->cdata->w2;
}
}
?>
Did this file decode correctly?
Original Code
<?php
/**
* This file is part of the reliforp/reli-prof package.
*
* (c) sji <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Reli\Lib\PhpInternals\Types\Zend;
use FFI\CData;
use FFI\PhpInternals\zend_value_ww;
class ZendValueWw
{
public int $w1;
public int $w2;
/** @param zend_value_ww $cdata */
public function __construct(
private CData $cdata,
) {
$this->w1 = $this->cdata->w1;
$this->w2 = $this->cdata->w2;
}
}
Function Calls
None |
Stats
MD5 | 097c8bed0a6a7ec55bbb45bb0b5551d7 |
Eval Count | 0 |
Decode Time | 82 ms |