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 Zippy. * * (c) Alchemy <[email protected]> * * For the..

Decoded Output download

<?php

/*
 * This file is part of Zippy.
 *
 * (c) Alchemy <[email protected]>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 *
 */

namespace Alchemy\Zippy\Adapter\Resource;

class ZipArchiveResource implements ResourceInterface
{
    private $archive;

    public function __construct(\ZipArchive $archive)
    {
        $this->archive = $archive;
    }

    /**
     * {@inheritdoc}
     */
    public function getResource()
    {
        return $this->archive;
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

/*
 * This file is part of Zippy.
 *
 * (c) Alchemy <[email protected]>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 *
 */

namespace Alchemy\Zippy\Adapter\Resource;

class ZipArchiveResource implements ResourceInterface
{
    private $archive;

    public function __construct(\ZipArchive $archive)
    {
        $this->archive = $archive;
    }

    /**
     * {@inheritdoc}
     */
    public function getResource()
    {
        return $this->archive;
    }
}

Function Calls

None

Variables

None

Stats

MD5 8129f2d3f6a2fecbfa78299fbf6e5fca
Eval Count 0
Decode Time 80 ms