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 SEOstats\Helper; /** * Array - Handle * * @package SEOstats * @aut..

Decoded Output download

<?php
namespace SEOstats\Helper;

/**
 * Array - Handle
 *
 * @package    SEOstats
 * @author     Stephan Schmitz <[email protected]>
 * @copyright  Copyright (c) 2010 - present Stephan Schmitz
 * @license    http://eyecatchup.mit-license.org/  MIT License
 * @updated    2013/02/03
 */

class ArrayHandle
{
    protected $array;

    public function push($element)
    {
        $this->array[] = $element;
    }

    public function setElement($key, $element)
    {
        $this->array[$key] = $element;
    }

    public function count()
    {
        return count($this->array);
    }

    public function toArray()
    {
        return $this->array;
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php
namespace SEOstats\Helper;

/**
 * Array - Handle
 *
 * @package    SEOstats
 * @author     Stephan Schmitz <[email protected]>
 * @copyright  Copyright (c) 2010 - present Stephan Schmitz
 * @license    http://eyecatchup.mit-license.org/  MIT License
 * @updated    2013/02/03
 */

class ArrayHandle
{
    protected $array;

    public function push($element)
    {
        $this->array[] = $element;
    }

    public function setElement($key, $element)
    {
        $this->array[$key] = $element;
    }

    public function count()
    {
        return count($this->array);
    }

    public function toArray()
    {
        return $this->array;
    }
}

Function Calls

None

Variables

None

Stats

MD5 1921e9e2edbda64b3c59ba8ebe52bae1
Eval Count 0
Decode Time 114 ms