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 uses()->afterEach(function () { expect($this) ->toHaveProperty('ith') ..
Decoded Output download
<?php
uses()->afterEach(function () {
expect($this)
->toHaveProperty('ith')
->and($this->ith)
->toBe(1);
$this->ith = 2;
});
afterEach(function () {
expect($this)
->toHaveProperty('ith')
->and($this->ith)
->toBe(2);
});
test('global afterEach execution order', function () {
expect($this)
->not()
->toHaveProperty('ith');
});
?>
Did this file decode correctly?
Original Code
<?php
uses()->afterEach(function () {
expect($this)
->toHaveProperty('ith')
->and($this->ith)
->toBe(1);
$this->ith = 2;
});
afterEach(function () {
expect($this)
->toHaveProperty('ith')
->and($this->ith)
->toBe(2);
});
test('global afterEach execution order', function () {
expect($this)
->not()
->toHaveProperty('ith');
});
Function Calls
None |
Stats
MD5 | 1ca2b17ea39ce14a46fd144ca9ebb89a |
Eval Count | 0 |
Decode Time | 80 ms |