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 /** @var \App\User $user */ $user->accounts()->where('foo', 'bar'); $user->accounts..
Decoded Output download
<?php
/** @var \App\User $user */
$user->accounts()->where('foo', 'bar');
$user->accounts()->create(['foo' => 'bar']);
$user->accounts()->firstOrNew(['foo' => 'bar']);
$user->accounts()->firstOrCreate(['foo' => 'bar']);
$user->accounts()->updateOrCreate(['foo' => 'bar']);
$user->posts()->where('foo', 'bar');
?>
Did this file decode correctly?
Original Code
<?php
/** @var \App\User $user */
$user->accounts()->where('foo', 'bar');
$user->accounts()->create(['foo' => 'bar']);
$user->accounts()->firstOrNew(['foo' => 'bar']);
$user->accounts()->firstOrCreate(['foo' => 'bar']);
$user->accounts()->updateOrCreate(['foo' => 'bar']);
$user->posts()->where('foo', 'bar');
Function Calls
None |
Stats
MD5 | fac656fbab096080ecc95e5322ac6a92 |
Eval Count | 0 |
Decode Time | 104 ms |