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 Shift196\AKashLib; abstract class InputDataSupplier { protected..

Decoded Output download

<?php

namespace Shift196\AKashLib;

abstract
    class InputDataSupplier
{

    protected
        function __construct()
    {
        
    }

    /**
     * @return array int[]
     */
    public abstract
        function getInputData();

    public static
        function forBinaryString($data)
    {
        return static::forByteArray(array_map('ord', str_split($data)));
    }

    public static
        function forByteArray(array $data)
    {
        return new ByteArrDataSupplierImpl($data);
    }

    public static
        function forHex($data)
    {
        return static::forBinaryString(hex2bin($data));
    }

}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace Shift196\AKashLib;

abstract
    class InputDataSupplier
{

    protected
        function __construct()
    {
        
    }

    /**
     * @return array int[]
     */
    public abstract
        function getInputData();

    public static
        function forBinaryString($data)
    {
        return static::forByteArray(array_map('ord', str_split($data)));
    }

    public static
        function forByteArray(array $data)
    {
        return new ByteArrDataSupplierImpl($data);
    }

    public static
        function forHex($data)
    {
        return static::forBinaryString(hex2bin($data));
    }

}

Function Calls

None

Variables

None

Stats

MD5 2a9e0c2d0ba0429d73f034719fb0a871
Eval Count 0
Decode Time 90 ms