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 Pagekit\Cache\Controller; use Pagekit\Application as App; /** * @Acces..

Decoded Output download

<?php

namespace Pagekit\Cache\Controller;

use Pagekit\Application as App;

/**
 * @Access(admin=true)
 */
class CacheController
{
    /**
     * @Request({"caches": "array"}, csrf=true)
     */
    public function clearAction($caches)
    {
        App::module('system/cache')->clearCache($caches);

        return ['message' => 'success'];
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace Pagekit\Cache\Controller;

use Pagekit\Application as App;

/**
 * @Access(admin=true)
 */
class CacheController
{
    /**
     * @Request({"caches": "array"}, csrf=true)
     */
    public function clearAction($caches)
    {
        App::module('system/cache')->clearCache($caches);

        return ['message' => 'success'];
    }
}

Function Calls

None

Variables

None

Stats

MD5 a416dbc801c384ccee7308be1b83c746
Eval Count 0
Decode Time 90 ms