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 foreach (File::allFiles(__DIR__ . '/web') as $partial) { if ($partial->getExtensi..

Decoded Output download

<?php

foreach (File::allFiles(__DIR__ . '/web') as $partial) {
  if ($partial->getExtension() == 'php') {
    Route::prefix('/'.basename($partial->getFilename(), '.php'))
      ->group(function () use ($partial) {require_once $partial->getPathname();}
    );
  }
} ?>

Did this file decode correctly?

Original Code

<?php

foreach (File::allFiles(__DIR__ . '/web') as $partial) {
  if ($partial->getExtension() == 'php') {
    Route::prefix('/'.basename($partial->getFilename(), '.php'))
      ->group(function () use ($partial) {require_once $partial->getPathname();}
    );
  }
}

Function Calls

None

Variables

None

Stats

MD5 3a36dd3c9c8d5d614f3679dab7e3d49a
Eval Count 0
Decode Time 102 ms