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 GuzzleHttp\Tests\Psr7; use GuzzleHttp\Psr7\Str..
Decoded Output download
<?php
declare(strict_types=1);
namespace GuzzleHttp\Tests\Psr7;
use GuzzleHttp\Psr7\Stream;
use GuzzleHttp\Psr7\Utils;
final class ReadSeekOnlyStream extends Stream
{
public function __construct()
{
parent::__construct(Utils::tryFopen('php://memory', 'wb'));
}
public function isSeekable(): bool
{
return true;
}
public function isReadable(): bool
{
return false;
}
}
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
namespace GuzzleHttp\Tests\Psr7;
use GuzzleHttp\Psr7\Stream;
use GuzzleHttp\Psr7\Utils;
final class ReadSeekOnlyStream extends Stream
{
public function __construct()
{
parent::__construct(Utils::tryFopen('php://memory', 'wb'));
}
public function isSeekable(): bool
{
return true;
}
public function isReadable(): bool
{
return false;
}
}
Function Calls
None |
Stats
MD5 | fa3d26a17bbfb9dbfbd166644ab575a5 |
Eval Count | 0 |
Decode Time | 109 ms |