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 Reli\BaseTestCase;
use Reli\Lib\PhpInternals\CastedCData;
use Reli\Lib\PhpInternals\Types\C\RawString;
use Reli\Lib\Process\Pointer\Pointer;
class ZendStringTest extends BaseTestCase
{
public function testValues(): void
{
$string_addr = \FFI::addr($buf = \FFI::new('char[16]'));
$zend_string = new ZendString(
new CastedCData(
new class () {
},
(object)[
'h' => 123,
'len' => 234,
'val' => $string_addr,
],
),
24,
new Pointer(
ZendString::class,
147,
255,
)
);
$this->assertSame(123, $zend_string->h);
$this->assertSame(234, $zend_string->len);
$this->assertSame(
\FFI::cast('long', $string_addr)->cdata,
$zend_string->val->address
);
}
public function testGetValuePointer(): void
{
$string_addr = \FFI::addr($buf = \FFI::new('char[16]'));
$zend_string = new ZendString(
new CastedCData(
new class () {
},
(object)[
'h' => 123,
'len' => 256,
'val' => $string_addr,
],
),
24,
new Pointer(
ZendString::class,
152,
280,
)
);
$value_pointer = $zend_string->getValuePointer();
$this->assertSame(RawString::class, $value_pointer->type);
$this->assertSame(176, $value_pointer->address);
$this->assertSame(256, $value_pointer->size);
}
}
?>
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 Reli\BaseTestCase;
use Reli\Lib\PhpInternals\CastedCData;
use Reli\Lib\PhpInternals\Types\C\RawString;
use Reli\Lib\Process\Pointer\Pointer;
class ZendStringTest extends BaseTestCase
{
public function testValues(): void
{
$string_addr = \FFI::addr($buf = \FFI::new('char[16]'));
$zend_string = new ZendString(
new CastedCData(
new class () {
},
(object)[
'h' => 123,
'len' => 234,
'val' => $string_addr,
],
),
24,
new Pointer(
ZendString::class,
147,
255,
)
);
$this->assertSame(123, $zend_string->h);
$this->assertSame(234, $zend_string->len);
$this->assertSame(
\FFI::cast('long', $string_addr)->cdata,
$zend_string->val->address
);
}
public function testGetValuePointer(): void
{
$string_addr = \FFI::addr($buf = \FFI::new('char[16]'));
$zend_string = new ZendString(
new CastedCData(
new class () {
},
(object)[
'h' => 123,
'len' => 256,
'val' => $string_addr,
],
),
24,
new Pointer(
ZendString::class,
152,
280,
)
);
$value_pointer = $zend_string->getValuePointer();
$this->assertSame(RawString::class, $value_pointer->type);
$this->assertSame(176, $value_pointer->address);
$this->assertSame(256, $value_pointer->size);
}
}
Function Calls
None |
Stats
MD5 | 54979b0a1fd483adb52173034317d306 |
Eval Count | 0 |
Decode Time | 99 ms |