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 /** * Validation Lines * The following language lines contain the default error me..

Decoded Output download

<?php
/**
 * Validation Lines
 * The following language lines contain the default error messages used by
 * the validator class. Some of these rules have multiple versions such
 * as the size rules. Feel free to tweak each of these messages here.
 */
return [

    // Standard laravel validation lines
    'accepted'             => ':attribute    .',
    'active_url'           => ':attribute    URL .',
    'after'                => ':attribute      :date.',
    'alpha'                => ':attribute     .',
    'alpha_dash'           => ':attribute     , ,    .',
    'alpha_num'            => ':attribute       .',
    'array'                => ':attribute     (array).',
    'backup_codes'         => '         .',
    'before'               => ':attribute      :date.',
    'between'              => [
        'numeric' => ':attribute     :min  :max.',
        'file'    => ':attribute     :min  :max .',
        'string'  => '  :attribute     :min  :max .',
        'array'   => ' :attribute     :min  :max .',
    ],
    'boolean'              => ' :attribute      (true  false).',
    'confirmed'            => '  :attribute  .',
    'date'                 => ':attribute    .',
    'date_format'          => ':attribute      - :format.',
    'different'            => ':attribute  :other    .',
    'digits'               => ':attribute    :digits .',
    'digits_between'       => ':attribute       :min  :max .',
    'email'                => ':attribute      .',
    'ends_with' => ':attribute        : :values',
    'file'                 => ' :attribute       .',
    'filled'               => ' :attribute  .',
    'gt'                   => [
        'numeric' => ':attribute    -  :value.',
        'file'    => '  :attribute    -  :value .',
        'string'  => '  :attribute    -  :value .',
        'array'   => ' :attribute      :value .',
    ],
    'gte'                  => [
        'numeric' => ' :attribute      -  :value.',
        'file'    => '  :attribute    -    :value .',
        'string'  => '  :attribute    -    :value .',
        'array'   => ' :attribute     :value   .',
    ],
    'exists'               => ' :attribute  .',
    'image'                => ':attribute   e .',
    'image_extension'      => ':attribute     /    .',
    'in'                   => ' :attribute  .',
    'integer'              => ':attribute     .',
    'ip'                   => ':attribute     IP .',
    'ipv4'                 => ':attribute     IPv4 .',
    'ipv6'                 => ':attribute     IPv6 .',
    'json'                 => ':attribute     JSON.',
    'lt'                   => [
        'numeric' => ':attribute    -  :value.',
        'file'    => '  :attribute    -  :value .',
        'string'  => '  :attribute    -  :value .',
        'array'   => ' :attribute    -  :value .',
    ],
    'lte'                  => [
        'numeric' => ':attribute    -    :value.',
        'file'    => '  :attribute    -    :value .',
        'string'  => '  :attribute    -    :value .',
        'array'   => ' :attribute       :value .',
    ],
    'max'                  => [
        'numeric' => ':attribute     -  :max.',
        'file'    => '  :attribute     -  :value .',
        'string'  => '  :attribute     -  :value .',
        'array'   => ' :attribute       :max .',
    ],
    'mimes'                => ' :attribute      : :values.',
    'min'                  => [
        'numeric' => ' :attribute     :min.',
        'file'    => ' :attribute     :min .',
        'string'  => ' :attribute      :min .',
        'array'   => ' :attribute     :min .',
    ],
    'not_in'               => ' :attribute   .',
    'not_regex'            => '  :attribute   .',
    'numeric'              => ' :attribute    .',
    'regex'                => '  :attribute   .',
    'required'             => ' :attribute  .',
    'required_if'          => ' :attribute  ,  :other  :value.',
    'required_with'        => ' :attribute  ,  :values  .',
    'required_with_all'    => ' :attribute  ,  :values  .',
    'required_without'     => ' :attribute  ,  :values   .',
    'required_without_all' => ' :attribute  ,     :values   .',
    'same'                 => ' :attribute  :other    .',
    'safe_url'             => '      .',
    'size'                 => [
        'numeric' => ' :attribute    :size.',
        'file'    => ' :attribute    :size .',
        'string'  => ' :attribute      :size .',
        'array'   => ' :attribute    :size .',
    ],
    'string'               => ' :attribute    .',
    'timezone'             => ' :attribute     .',
    'totp'                 => '       .',
    'unique'               => ' :attribute   .',
    'url'                  => '  :attribute   .',
    'uploaded'             => '     .         .',

    // Custom validation lines
    'custom' => [
        'password-confirm' => [
            'required_with' => '    ',
        ],
    ],

    // Custom validation attributes
    'attributes' => [],
];
 ?>

Did this file decode correctly?

Original Code

<?php
/**
 * Validation Lines
 * The following language lines contain the default error messages used by
 * the validator class. Some of these rules have multiple versions such
 * as the size rules. Feel free to tweak each of these messages here.
 */
return [

    // Standard laravel validation lines
    'accepted'             => ':attribute    .',
    'active_url'           => ':attribute    URL .',
    'after'                => ':attribute      :date.',
    'alpha'                => ':attribute     .',
    'alpha_dash'           => ':attribute     , ,    .',
    'alpha_num'            => ':attribute       .',
    'array'                => ':attribute     (array).',
    'backup_codes'         => '         .',
    'before'               => ':attribute      :date.',
    'between'              => [
        'numeric' => ':attribute     :min  :max.',
        'file'    => ':attribute     :min  :max .',
        'string'  => '  :attribute     :min  :max .',
        'array'   => ' :attribute     :min  :max .',
    ],
    'boolean'              => ' :attribute      (true  false).',
    'confirmed'            => '  :attribute  .',
    'date'                 => ':attribute    .',
    'date_format'          => ':attribute      - :format.',
    'different'            => ':attribute  :other    .',
    'digits'               => ':attribute    :digits .',
    'digits_between'       => ':attribute       :min  :max .',
    'email'                => ':attribute      .',
    'ends_with' => ':attribute        : :values',
    'file'                 => ' :attribute       .',
    'filled'               => ' :attribute  .',
    'gt'                   => [
        'numeric' => ':attribute    -  :value.',
        'file'    => '  :attribute    -  :value .',
        'string'  => '  :attribute    -  :value .',
        'array'   => ' :attribute      :value .',
    ],
    'gte'                  => [
        'numeric' => ' :attribute      -  :value.',
        'file'    => '  :attribute    -    :value .',
        'string'  => '  :attribute    -    :value .',
        'array'   => ' :attribute     :value   .',
    ],
    'exists'               => ' :attribute  .',
    'image'                => ':attribute   e .',
    'image_extension'      => ':attribute     /    .',
    'in'                   => ' :attribute  .',
    'integer'              => ':attribute     .',
    'ip'                   => ':attribute     IP .',
    'ipv4'                 => ':attribute     IPv4 .',
    'ipv6'                 => ':attribute     IPv6 .',
    'json'                 => ':attribute     JSON.',
    'lt'                   => [
        'numeric' => ':attribute    -  :value.',
        'file'    => '  :attribute    -  :value .',
        'string'  => '  :attribute    -  :value .',
        'array'   => ' :attribute    -  :value .',
    ],
    'lte'                  => [
        'numeric' => ':attribute    -    :value.',
        'file'    => '  :attribute    -    :value .',
        'string'  => '  :attribute    -    :value .',
        'array'   => ' :attribute       :value .',
    ],
    'max'                  => [
        'numeric' => ':attribute     -  :max.',
        'file'    => '  :attribute     -  :value .',
        'string'  => '  :attribute     -  :value .',
        'array'   => ' :attribute       :max .',
    ],
    'mimes'                => ' :attribute      : :values.',
    'min'                  => [
        'numeric' => ' :attribute     :min.',
        'file'    => ' :attribute     :min .',
        'string'  => ' :attribute      :min .',
        'array'   => ' :attribute     :min .',
    ],
    'not_in'               => ' :attribute   .',
    'not_regex'            => '  :attribute   .',
    'numeric'              => ' :attribute    .',
    'regex'                => '  :attribute   .',
    'required'             => ' :attribute  .',
    'required_if'          => ' :attribute  ,  :other  :value.',
    'required_with'        => ' :attribute  ,  :values  .',
    'required_with_all'    => ' :attribute  ,  :values  .',
    'required_without'     => ' :attribute  ,  :values   .',
    'required_without_all' => ' :attribute  ,     :values   .',
    'same'                 => ' :attribute  :other    .',
    'safe_url'             => '      .',
    'size'                 => [
        'numeric' => ' :attribute    :size.',
        'file'    => ' :attribute    :size .',
        'string'  => ' :attribute      :size .',
        'array'   => ' :attribute    :size .',
    ],
    'string'               => ' :attribute    .',
    'timezone'             => ' :attribute     .',
    'totp'                 => '       .',
    'unique'               => ' :attribute   .',
    'url'                  => '  :attribute   .',
    'uploaded'             => '     .         .',

    // Custom validation lines
    'custom' => [
        'password-confirm' => [
            'required_with' => '    ',
        ],
    ],

    // Custom validation attributes
    'attributes' => [],
];

Function Calls

None

Variables

None

Stats

MD5 c2866c0b68c4f494d78e3e111533282e
Eval Count 0
Decode Time 82 ms