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\Console\NodeVisitor; use PhpParser\Lexer; use PhpParser\Node; us..

Decoded Output download

<?php

namespace Pagekit\Console\NodeVisitor;

use PhpParser\Lexer;
use PhpParser\Node;
use PhpParser\NodeTraverser;
use PhpParser\NodeVisitor as BaseVisitor;
use PhpParser\ParserFactory;

class PhpNodeVisitor extends NodeVisitor implements BaseVisitor
{
    /**
     * {@inheritdoc}
     */
    public function traverse(array $files)
    {
        $parser = (new ParserFactory)->create(ParserFactory::PREFER_PHP5);

        $traverser = new NodeTraverser(true);
        $traverser->addVisitor($this);

        foreach ($files as $file) {

            try {

                $traverser->traverse($parser->parse(file_get_contents($this->loadTemplate($file))));

            } catch (\Exception $e) {
            }
        }

        return $this->results;
    }

    /**
     * {@inheritdoc}
     */
    public function enterNode(Node $node)
    {
        if ($node instanceof Node\Expr\FuncCall
            && isset($node->name) && isset($node->name->parts)
            && ($node->name->parts[0] == '__' || $node->name->parts[0] == '_c')
            && isset($node->args[0]) && isset($node->args[0]->value->value)
            && is_string($string = $node->args[0]->value->value)
        ) {
            $key                               = $node->name->parts[0] == '__' ? 2 : 3;
            $domain                            = isset($node->args[$key]) && is_string($node->args[$key]->value->value) ? $node->args[$key]->value->value : 'messages';
            $this->results[$domain][$string][] = ['file' => $this->file, 'line' => $node->getLine()];
        } elseif ($node instanceof Node\Expr\MethodCall
            && isset($node->name)
            && ($node->name == 'trans' || $node->name == 'transChoice')
            && isset($node->args[0]) && isset($node->args[0]->value->value)
            && is_string($string = $node->args[0]->value->value)) {
            $key                               = $node->name == 'trans' ? 2 : 3;
            $domain                            = isset($node->args[$key]) && is_string($node->args[$key]->value->value) ? $node->args[$key]->value->value : 'messages';
            $this->results[$domain][$string][] = ['file' => $this->file, 'line' => $node->getLine()];
        }
    }

    public function beforeTraverse(array $nodes)
    {
    }

    public function leaveNode(Node $node)
    {
    }

    public function afterTraverse(array $nodes)
    {
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace Pagekit\Console\NodeVisitor;

use PhpParser\Lexer;
use PhpParser\Node;
use PhpParser\NodeTraverser;
use PhpParser\NodeVisitor as BaseVisitor;
use PhpParser\ParserFactory;

class PhpNodeVisitor extends NodeVisitor implements BaseVisitor
{
    /**
     * {@inheritdoc}
     */
    public function traverse(array $files)
    {
        $parser = (new ParserFactory)->create(ParserFactory::PREFER_PHP5);

        $traverser = new NodeTraverser(true);
        $traverser->addVisitor($this);

        foreach ($files as $file) {

            try {

                $traverser->traverse($parser->parse(file_get_contents($this->loadTemplate($file))));

            } catch (\Exception $e) {
            }
        }

        return $this->results;
    }

    /**
     * {@inheritdoc}
     */
    public function enterNode(Node $node)
    {
        if ($node instanceof Node\Expr\FuncCall
            && isset($node->name) && isset($node->name->parts)
            && ($node->name->parts[0] == '__' || $node->name->parts[0] == '_c')
            && isset($node->args[0]) && isset($node->args[0]->value->value)
            && is_string($string = $node->args[0]->value->value)
        ) {
            $key                               = $node->name->parts[0] == '__' ? 2 : 3;
            $domain                            = isset($node->args[$key]) && is_string($node->args[$key]->value->value) ? $node->args[$key]->value->value : 'messages';
            $this->results[$domain][$string][] = ['file' => $this->file, 'line' => $node->getLine()];
        } elseif ($node instanceof Node\Expr\MethodCall
            && isset($node->name)
            && ($node->name == 'trans' || $node->name == 'transChoice')
            && isset($node->args[0]) && isset($node->args[0]->value->value)
            && is_string($string = $node->args[0]->value->value)) {
            $key                               = $node->name == 'trans' ? 2 : 3;
            $domain                            = isset($node->args[$key]) && is_string($node->args[$key]->value->value) ? $node->args[$key]->value->value : 'messages';
            $this->results[$domain][$string][] = ['file' => $this->file, 'line' => $node->getLine()];
        }
    }

    public function beforeTraverse(array $nodes)
    {
    }

    public function leaveNode(Node $node)
    {
    }

    public function afterTraverse(array $nodes)
    {
    }
}

Function Calls

None

Variables

None

Stats

MD5 5119044fb0d97335e806f50d4bd7e608
Eval Count 0
Decode Time 86 ms