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 the Zephir. * * (c) Phalcon Team <[email protected]..

Decoded Output download

<?php

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

declare(strict_types=1);

namespace Zephir\Expression\Builder\Operators;

use Zephir\Expression\Builder\AbstractBuilder;

/**
 * Allows to manually build a binary operator AST node
 */
class BinaryOperator extends AbstractOperator
{
    // x + y
    public const OPERATOR_ACCESS_ARRAY = 'array-access';

    // x - y
    public const OPERATOR_ACCESS_PROPERTY = 'property-access';

    // x * y
    public const OPERATOR_ACCESS_PROPERTY_DYNAMIC = 'property-dynamic-access';

    // x / y
    public const OPERATOR_ACCESS_PROPERTY_STRING = 'property-string-access';

    // x % y
    public const OPERATOR_ACCESS_STATIC_CONSTANT = 'static-constant-access';

    // x . y
    public const OPERATOR_ACCESS_STATIC_PROPERTY = 'static-property-access';

    // x && y
    public const OPERATOR_ADD = 'add';

    // x || y
    public const OPERATOR_AND = 'and';

    // x | y
    public const OPERATOR_BITWISE_AND = 'bitwise_and';

    // x & y
    public const OPERATOR_BITWISE_OR = 'bitwise_or';

    // x ^ y
    public const OPERATOR_BITWISE_SHIFT_LEFT = 'bitwise_shiftleft';

    // x << y
    public const OPERATOR_BITWISE_SHIFT_RIGHT = 'bitwise_shiftright';

    // x >> y
    public const OPERATOR_BITWISE_XOR = 'bitwise_xor';

    // x instanceof y
    public const OPERATOR_CAST = 'cast';

    // x .. y
    public const OPERATOR_CONCAT = 'concat';

    // x ... y
    public const OPERATOR_DIV = 'div';

    // x == y
    public const OPERATOR_EQUALS = 'equals';

    // x != y
    public const OPERATOR_ERANGE = 'erange';

    // x ==- y
    public const OPERATOR_GREATER = 'greater';

    // x !== y
    public const OPERATOR_GREATER_EQUAL = 'greater-equal';

    // x < y
    public const OPERATOR_IDENTICAL = 'identical';

    // x > y
    public const OPERATOR_INSTANCEOF = 'instanceof';

    // x <= y
    public const OPERATOR_IRANGE = 'irange';

    // x >= y
    public const OPERATOR_LESS = 'less';

    // (type) a
    public const OPERATOR_LESS_EQUAL = 'less-equal';

    // <type> a
    public const OPERATOR_MOD = 'mod';

    // x -> y
    public const OPERATOR_MUL = 'mul';

    // x -> {y}
    public const OPERATOR_NOT_EQUALS = 'not-equals';

    // x -> {"string"}
    public const OPERATOR_NOT_IDENTICAL = 'not-identical';

    // x :: y
    public const OPERATOR_OR = 'or';

    // x :: CONSTANT
    public const OPERATOR_SUB = 'sub';

    // x [{expr}]
    public const OPERATOR_TYPE_HINT = 'type-hint';
    private $leftExpression;
    private $operator;
    private $rightExpression;

    /**
     * @param null                 $operator
     * @param AbstractBuilder|null $leftExpression
     * @param AbstractBuilder|null $rightExpression
     */
    public function __construct(
        $operator = null,
        AbstractBuilder $leftExpression = null,
        AbstractBuilder $rightExpression = null
    ) {
        if (null !== $operator) {
            $this->setOperator($operator);
        }

        if (null !== $leftExpression) {
            $this->setLeftExpression($leftExpression);
        }

        if (null !== $rightExpression) {
            $this->setRightExpression($rightExpression);
        }
    }

    /**
     * @return AbstractBuilder
     */
    public function getLeftExpression()
    {
        return $this->leftExpression;
    }

    /**
     * @return string
     */
    public function getOperator()
    {
        return $this->operator;
    }

    /**
     * @return AbstractBuilder
     */
    public function getRightExpression()
    {
        return $this->rightExpression;
    }

    /**
     * @param AbstractBuilder $leftExpression
     *
     * @return BinaryOperator
     */
    public function setLeftExpression(AbstractBuilder $leftExpression)
    {
        $this->leftExpression = $leftExpression;

        return $this;
    }

    /**
     * @param string $operator
     *
     * @return BinaryOperator
     */
    public function setOperator($operator)
    {
        $this->operator = $operator;

        return $this;
    }

    /**
     * @param AbstractBuilder $rightExpression
     *
     * @return BinaryOperator
     */
    public function setRightExpression(AbstractBuilder $rightExpression)
    {
        $this->rightExpression = $rightExpression;

        return $this;
    }

    /**
     * {@inheritdoc}
     */
    protected function preBuild()
    {
        return [
            'type'  => $this->getOperator(),
            'left'  => $this->getLeftExpression(),
            'right' => $this->getRightExpression(),
        ];
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

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

declare(strict_types=1);

namespace Zephir\Expression\Builder\Operators;

use Zephir\Expression\Builder\AbstractBuilder;

/**
 * Allows to manually build a binary operator AST node
 */
class BinaryOperator extends AbstractOperator
{
    // x + y
    public const OPERATOR_ACCESS_ARRAY = 'array-access';

    // x - y
    public const OPERATOR_ACCESS_PROPERTY = 'property-access';

    // x * y
    public const OPERATOR_ACCESS_PROPERTY_DYNAMIC = 'property-dynamic-access';

    // x / y
    public const OPERATOR_ACCESS_PROPERTY_STRING = 'property-string-access';

    // x % y
    public const OPERATOR_ACCESS_STATIC_CONSTANT = 'static-constant-access';

    // x . y
    public const OPERATOR_ACCESS_STATIC_PROPERTY = 'static-property-access';

    // x && y
    public const OPERATOR_ADD = 'add';

    // x || y
    public const OPERATOR_AND = 'and';

    // x | y
    public const OPERATOR_BITWISE_AND = 'bitwise_and';

    // x & y
    public const OPERATOR_BITWISE_OR = 'bitwise_or';

    // x ^ y
    public const OPERATOR_BITWISE_SHIFT_LEFT = 'bitwise_shiftleft';

    // x << y
    public const OPERATOR_BITWISE_SHIFT_RIGHT = 'bitwise_shiftright';

    // x >> y
    public const OPERATOR_BITWISE_XOR = 'bitwise_xor';

    // x instanceof y
    public const OPERATOR_CAST = 'cast';

    // x .. y
    public const OPERATOR_CONCAT = 'concat';

    // x ... y
    public const OPERATOR_DIV = 'div';

    // x == y
    public const OPERATOR_EQUALS = 'equals';

    // x != y
    public const OPERATOR_ERANGE = 'erange';

    // x ==- y
    public const OPERATOR_GREATER = 'greater';

    // x !== y
    public const OPERATOR_GREATER_EQUAL = 'greater-equal';

    // x < y
    public const OPERATOR_IDENTICAL = 'identical';

    // x > y
    public const OPERATOR_INSTANCEOF = 'instanceof';

    // x <= y
    public const OPERATOR_IRANGE = 'irange';

    // x >= y
    public const OPERATOR_LESS = 'less';

    // (type) a
    public const OPERATOR_LESS_EQUAL = 'less-equal';

    // <type> a
    public const OPERATOR_MOD = 'mod';

    // x -> y
    public const OPERATOR_MUL = 'mul';

    // x -> {y}
    public const OPERATOR_NOT_EQUALS = 'not-equals';

    // x -> {"string"}
    public const OPERATOR_NOT_IDENTICAL = 'not-identical';

    // x :: y
    public const OPERATOR_OR = 'or';

    // x :: CONSTANT
    public const OPERATOR_SUB = 'sub';

    // x [{expr}]
    public const OPERATOR_TYPE_HINT = 'type-hint';
    private $leftExpression;
    private $operator;
    private $rightExpression;

    /**
     * @param null                 $operator
     * @param AbstractBuilder|null $leftExpression
     * @param AbstractBuilder|null $rightExpression
     */
    public function __construct(
        $operator = null,
        AbstractBuilder $leftExpression = null,
        AbstractBuilder $rightExpression = null
    ) {
        if (null !== $operator) {
            $this->setOperator($operator);
        }

        if (null !== $leftExpression) {
            $this->setLeftExpression($leftExpression);
        }

        if (null !== $rightExpression) {
            $this->setRightExpression($rightExpression);
        }
    }

    /**
     * @return AbstractBuilder
     */
    public function getLeftExpression()
    {
        return $this->leftExpression;
    }

    /**
     * @return string
     */
    public function getOperator()
    {
        return $this->operator;
    }

    /**
     * @return AbstractBuilder
     */
    public function getRightExpression()
    {
        return $this->rightExpression;
    }

    /**
     * @param AbstractBuilder $leftExpression
     *
     * @return BinaryOperator
     */
    public function setLeftExpression(AbstractBuilder $leftExpression)
    {
        $this->leftExpression = $leftExpression;

        return $this;
    }

    /**
     * @param string $operator
     *
     * @return BinaryOperator
     */
    public function setOperator($operator)
    {
        $this->operator = $operator;

        return $this;
    }

    /**
     * @param AbstractBuilder $rightExpression
     *
     * @return BinaryOperator
     */
    public function setRightExpression(AbstractBuilder $rightExpression)
    {
        $this->rightExpression = $rightExpression;

        return $this;
    }

    /**
     * {@inheritdoc}
     */
    protected function preBuild()
    {
        return [
            'type'  => $this->getOperator(),
            'left'  => $this->getLeftExpression(),
            'right' => $this->getRightExpression(),
        ];
    }
}

Function Calls

None

Variables

None

Stats

MD5 1ca766ea5e58f7cb62137fd32444ad4e
Eval Count 0
Decode Time 99 ms