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 Yansongda\Pay\Plugin\Alipay\V2\Pay\Agreement\Bi..
Decoded Output download
<?php
declare(strict_types=1);
namespace Yansongda\Pay\Plugin\Alipay\V2\Pay\Agreement\Bill;
use Closure;
use Yansongda\Artful\Contract\PluginInterface;
use Yansongda\Artful\Logger;
use Yansongda\Artful\Rocket;
/**
* @see https://opendocs.alipay.com/open/1523f88d_alipay.data.dataservice.bill.downloadurl.query?pathHash=6a78e19b&ref=api&scene=common
*/
class QueryUrlPlugin implements PluginInterface
{
public function assembly(Rocket $rocket, Closure $next): Rocket
{
Logger::debug('[Alipay][Pay][Agreement][Bill][QueryUrlPlugin] ', ['rocket' => $rocket]);
$rocket->mergePayload([
'method' => 'alipay.data.dataservice.bill.downloadurl.query',
'biz_content' => $rocket->getParams(),
]);
Logger::info('[Alipay][Pay][Agreement][Bill][QueryUrlPlugin] ', ['rocket' => $rocket]);
return $next($rocket);
}
}
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
namespace Yansongda\Pay\Plugin\Alipay\V2\Pay\Agreement\Bill;
use Closure;
use Yansongda\Artful\Contract\PluginInterface;
use Yansongda\Artful\Logger;
use Yansongda\Artful\Rocket;
/**
* @see https://opendocs.alipay.com/open/1523f88d_alipay.data.dataservice.bill.downloadurl.query?pathHash=6a78e19b&ref=api&scene=common
*/
class QueryUrlPlugin implements PluginInterface
{
public function assembly(Rocket $rocket, Closure $next): Rocket
{
Logger::debug('[Alipay][Pay][Agreement][Bill][QueryUrlPlugin] ', ['rocket' => $rocket]);
$rocket->mergePayload([
'method' => 'alipay.data.dataservice.bill.downloadurl.query',
'biz_content' => $rocket->getParams(),
]);
Logger::info('[Alipay][Pay][Agreement][Bill][QueryUrlPlugin] ', ['rocket' => $rocket]);
return $next($rocket);
}
}
Function Calls
None |
Stats
MD5 | 2b4c0d71cf3594fcfe90256c80ee70e7 |
Eval Count | 0 |
Decode Time | 103 ms |