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 Jdenticon for PHP. * https://github.com/dmester/jdentic..

Decoded Output download

<?php
/**
 * This file is part of Jdenticon for PHP.
 * https://github.com/dmester/jdenticon-php/
 * 
 * Copyright (c) 2018 Daniel Mester Pirttijrvi
 * 
 * For full license information, please see the LICENSE file that was 
 * distributed with this source code.
 */

namespace Jdenticon\Shapes;

/**
 * Specifies in which cell a shape will be rendered.
 */
class ShapePosition
{
    /**
     * The horizontal cell index measured left to right.
     *
     * @var int
     */
    public $x;
    
    /**
     * The vertical cell index measured from the top.
     *
     * @var int
     */
    public $y;

    /**
     * Creates a new ShapePosition instance.
     *
     * @param int $x The x-coordinate of the containing cell.
     * @param int $y The y-coordinate of the containing cell.
     */
    public function __construct($x, $y)
    {
        $this->x = $x;
        $this->y = $y;
    }
}

 ?>

Did this file decode correctly?

Original Code

<?php
/**
 * This file is part of Jdenticon for PHP.
 * https://github.com/dmester/jdenticon-php/
 * 
 * Copyright (c) 2018 Daniel Mester Pirttijrvi
 * 
 * For full license information, please see the LICENSE file that was 
 * distributed with this source code.
 */

namespace Jdenticon\Shapes;

/**
 * Specifies in which cell a shape will be rendered.
 */
class ShapePosition
{
    /**
     * The horizontal cell index measured left to right.
     *
     * @var int
     */
    public $x;
    
    /**
     * The vertical cell index measured from the top.
     *
     * @var int
     */
    public $y;

    /**
     * Creates a new ShapePosition instance.
     *
     * @param int $x The x-coordinate of the containing cell.
     * @param int $y The y-coordinate of the containing cell.
     */
    public function __construct($x, $y)
    {
        $this->x = $x;
        $this->y = $y;
    }
}

Function Calls

None

Variables

None

Stats

MD5 85f0cbf6175ed577837982880c962ece
Eval Count 0
Decode Time 116 ms