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::get('/foo', function () { return ..
Decoded Output download
<?php
use Illuminate\Support\Facades\Route;
Route::get('/foo', function () {
return 'Regular route';
});
Route::get('{slug}', function () {
return 'Wildcard route';
});
?>
Did this file decode correctly?
Original Code
<?php
use Illuminate\Support\Facades\Route;
Route::get('/foo', function () {
return 'Regular route';
});
Route::get('{slug}', function () {
return 'Wildcard route';
});
Function Calls
| None |
Stats
| MD5 | aad8fd939258e9fffdcb372601bf25f9 |
| Eval Count | 0 |
| Decode Time | 101 ms |