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 return [ 'title' => 'Login', 'heading' => 'Sign in', 'actions' => [ ..
Decoded Output download
<?php
return [
'title' => 'Login',
'heading' => 'Sign in',
'actions' => [
'register' => [
'before' => 'or',
'label' => 'sign up for an account',
],
'request_password_reset' => [
'label' => 'Forgot password?',
],
],
'form' => [
'email' => [
'label' => 'Email address',
],
'password' => [
'label' => 'Password',
],
'remember' => [
'label' => 'Remember me',
],
'actions' => [
'authenticate' => [
'label' => 'Sign in',
],
],
],
'messages' => [
'failed' => 'These credentials do not match our records.',
],
'notifications' => [
'throttled' => [
'title' => 'Too many login attempts',
'body' => 'Please try again in :seconds seconds.',
],
],
];
?>
Did this file decode correctly?
Original Code
<?php
return [
'title' => 'Login',
'heading' => 'Sign in',
'actions' => [
'register' => [
'before' => 'or',
'label' => 'sign up for an account',
],
'request_password_reset' => [
'label' => 'Forgot password?',
],
],
'form' => [
'email' => [
'label' => 'Email address',
],
'password' => [
'label' => 'Password',
],
'remember' => [
'label' => 'Remember me',
],
'actions' => [
'authenticate' => [
'label' => 'Sign in',
],
],
],
'messages' => [
'failed' => 'These credentials do not match our records.',
],
'notifications' => [
'throttled' => [
'title' => 'Too many login attempts',
'body' => 'Please try again in :seconds seconds.',
],
],
];
Function Calls
None |
Stats
MD5 | aa8b09cff562aac9ef633c3ed0a2ca4f |
Eval Count | 0 |
Decode Time | 77 ms |