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 namespace LegacyTests\Browser\QueryString; use Livewire\Component as BaseComponent..

Decoded Output download

<?php

namespace LegacyTests\Browser\QueryString;

use Livewire\Component as BaseComponent;

class ComponentWithMethodInsteadOfProperty extends BaseComponent
{
    public $foo = 'bar';

    public function queryString()
    {
        return ['foo' => ['alwaysShow' => true]];
    }

    public function render()
    {
        return '<div>{{ $foo }}</div>';
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace LegacyTests\Browser\QueryString;

use Livewire\Component as BaseComponent;

class ComponentWithMethodInsteadOfProperty extends BaseComponent
{
    public $foo = 'bar';

    public function queryString()
    {
        return ['foo' => ['alwaysShow' => true]];
    }

    public function render()
    {
        return '<div>{{ $foo }}</div>';
    }
}

Function Calls

None

Variables

None

Stats

MD5 5777ece8d7d43cafc4be6d908ccc9a1e
Eval Count 0
Decode Time 106 ms