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 use Illuminate\Support\Facades\Route; Route::redirect('/foo/1', '/foo/1/bar'); Ro..
Decoded Output download
<?php
use Illuminate\Support\Facades\Route;
Route::redirect('/foo/1', '/foo/1/bar');
Route::get('/foo/1/bar', function () {
return 'Redirect response';
});
Route::get('/foo/1', function () {
return 'GET response';
});
?>
Did this file decode correctly?
Original Code
<?php
use Illuminate\Support\Facades\Route;
Route::redirect('/foo/1', '/foo/1/bar');
Route::get('/foo/1/bar', function () {
return 'Redirect response';
});
Route::get('/foo/1', function () {
return 'GET response';
});
Function Calls
| None |
Stats
| MD5 | e5cbd491e0ffde5a1bbd47f0556d6c2a |
| Eval Count | 0 |
| Decode Time | 89 ms |