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 namespace PHPDaemon\Clients\AMQP\Driver\Protocol\v091\Serializer; use InvalidArgum..
Decoded Output download
<?php
namespace PHPDaemon\Clients\AMQP\Driver\Protocol091\Serializer;
use InvalidArgumentException;
/**
* Serialize an AMQP table to a string buffer.
*
* Interface TableInterface
* @author Aleksey I. Kuleshov YOU GLOBAL LIMITED
* @package PHPDaemon\Clients\AMQP\Driver\Protocol091\Serializer
*/
interface TableInterface
{
/**
* Serialize an AMQP table.
*
* @param array $table The table.
*
* @return string The binary serialized table.
* @throws InvalidArgumentException if the table contains unserializable
* values.
*/
public function serialize(array $table);
}
?>
Did this file decode correctly?
Original Code
<?php
namespace PHPDaemon\Clients\AMQP\Driver\Protocol\v091\Serializer;
use InvalidArgumentException;
/**
* Serialize an AMQP table to a string buffer.
*
* Interface TableInterface
* @author Aleksey I. Kuleshov YOU GLOBAL LIMITED
* @package PHPDaemon\Clients\AMQP\Driver\Protocol\v091\Serializer
*/
interface TableInterface
{
/**
* Serialize an AMQP table.
*
* @param array $table The table.
*
* @return string The binary serialized table.
* @throws InvalidArgumentException if the table contains unserializable
* values.
*/
public function serialize(array $table);
}
Function Calls
None |
Stats
MD5 | 33ae57161a640fc9b1c09209c83db513 |
Eval Count | 0 |
Decode Time | 84 ms |