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 /** * Created by IntelliJ IDEA. * User: winglechen * Date: 15/11/28 * Time: 23:1..

Decoded Output download

<?php
/**
 * Created by IntelliJ IDEA.
 * User: winglechen
 * Date: 15/11/28
 * Time: 23:14
 */

namespace Zan\Framework\Test\Foundation\Coroutine;


class Context {
    private $map = [];

    public function __construct() {
        $this->map = [];
    }

    public function get($key, $default=null) {
        if( isset($this->map[$key]) ) {
            return $this->map[$key];
        }

        return $default;
    }

    public function set($key, $value) {
        $this->map[$key] = $value;
    }

    public function show() {
        return $this->map;
    }
} ?>

Did this file decode correctly?

Original Code

<?php
/**
 * Created by IntelliJ IDEA.
 * User: winglechen
 * Date: 15/11/28
 * Time: 23:14
 */

namespace Zan\Framework\Test\Foundation\Coroutine;


class Context {
    private $map = [];

    public function __construct() {
        $this->map = [];
    }

    public function get($key, $default=null) {
        if( isset($this->map[$key]) ) {
            return $this->map[$key];
        }

        return $default;
    }

    public function set($key, $value) {
        $this->map[$key] = $value;
    }

    public function show() {
        return $this->map;
    }
}

Function Calls

None

Variables

None

Stats

MD5 6e93aa9e12f6b9308d142014975e6f53
Eval Count 0
Decode Time 90 ms