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 Imagine package. * * (c) Bulat Shakirzyanov <malll..
Decoded Output download
<?php
/*
* This file is part of the Imagine package.
*
* (c) Bulat Shakirzyanov <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Imagine\Filter\Basic;
use Imagine\Image\ImageInterface;
use Imagine\Filter\FilterInterface;
/**
* A strip filter
*/
class Strip implements FilterInterface
{
/**
* {@inheritdoc}
*/
public function apply(ImageInterface $image)
{
return $image->strip();
}
}
?>
Did this file decode correctly?
Original Code
<?php
/*
* This file is part of the Imagine package.
*
* (c) Bulat Shakirzyanov <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Imagine\Filter\Basic;
use Imagine\Image\ImageInterface;
use Imagine\Filter\FilterInterface;
/**
* A strip filter
*/
class Strip implements FilterInterface
{
/**
* {@inheritdoc}
*/
public function apply(ImageInterface $image)
{
return $image->strip();
}
}
Function Calls
None |
Stats
MD5 | d2d0549ee7214d1f1e2dd219f6eb351a |
Eval Count | 0 |
Decode Time | 127 ms |