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 League\Flysystem\Ftp; use TypeError; use Value..
Decoded Output download
<?php
declare(strict_types=1);
namespace League\Flysystem\Ftp;
use TypeError;
use ValueError;
class NoopCommandConnectivityChecker implements ConnectivityChecker
{
public function isConnected($connection): bool
{
// @codeCoverageIgnoreStart
try {
$response = @ftp_raw($connection, 'NOOP');
} catch (TypeError | ValueError $typeError) {
return false;
}
// @codeCoverageIgnoreEnd
$responseCode = $response ? (int) preg_replace('/\D/', '', implode('', $response)) : false;
return $responseCode === 200;
}
}
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
namespace League\Flysystem\Ftp;
use TypeError;
use ValueError;
class NoopCommandConnectivityChecker implements ConnectivityChecker
{
public function isConnected($connection): bool
{
// @codeCoverageIgnoreStart
try {
$response = @ftp_raw($connection, 'NOOP');
} catch (TypeError | ValueError $typeError) {
return false;
}
// @codeCoverageIgnoreEnd
$responseCode = $response ? (int) preg_replace('/\D/', '', implode('', $response)) : false;
return $responseCode === 200;
}
}
Function Calls
None |
Stats
MD5 | d54b8b37d07202b729507110e2774a94 |
Eval Count | 0 |
Decode Time | 116 ms |