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\Database\Migrations\Migration; use Illuminate\Database\Schema\Bluepr..
Decoded Output download
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\Schema;
class DynamicContentIsShown extends Migration
{
public function up()
{
Schema::create('blogs', function (Blueprint $table) {
$table->increments('id');
$table->string('url')->nullable();
$table->string('name')->nullable();
});
DB::table('blogs')->insert([
['url' => 'www.janedoe.com'],
['url' => 'www.johndoe.com'],
]);
DB::statement("ALTER TABLE 'pseudo_table_name' MODIFY 'column_name' VARCHAR(191)");
/** @var \Illuminate\Support\Collection $tablesList */
$tablesList = DB::withoutPretending(function () {
return DB::table('people')->get();
});
$tablesList->each(function ($person, $key) {
DB::table('blogs')->where('blog_id', '=', $person->blog_id)->insert([
'id' => $key + 1,
'name' => "{$person->name} Blog",
]);
});
}
}
?>
Did this file decode correctly?
Original Code
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\Schema;
class DynamicContentIsShown extends Migration
{
public function up()
{
Schema::create('blogs', function (Blueprint $table) {
$table->increments('id');
$table->string('url')->nullable();
$table->string('name')->nullable();
});
DB::table('blogs')->insert([
['url' => 'www.janedoe.com'],
['url' => 'www.johndoe.com'],
]);
DB::statement("ALTER TABLE 'pseudo_table_name' MODIFY 'column_name' VARCHAR(191)");
/** @var \Illuminate\Support\Collection $tablesList */
$tablesList = DB::withoutPretending(function () {
return DB::table('people')->get();
});
$tablesList->each(function ($person, $key) {
DB::table('blogs')->where('blog_id', '=', $person->blog_id)->insert([
'id' => $key + 1,
'name' => "{$person->name} Blog",
]);
});
}
}
Function Calls
None |
Stats
MD5 | 3803e8af34df8a3c0eb0bf1323ae9b70 |
Eval Count | 0 |
Decode Time | 88 ms |