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 test('notice', function () { trigger_error('This is a notice description', E_US..
Decoded Output download
<?php
test('notice', function () {
trigger_error('This is a notice description', E_USER_NOTICE);
expect(true)->toBeTrue();
});
describe('a "describe" group of tests', function () {
test('notice', function () {
trigger_error('This is a notice description', E_USER_NOTICE);
expect(true)->toBeTrue();
});
});
?>
Did this file decode correctly?
Original Code
<?php
test('notice', function () {
trigger_error('This is a notice description', E_USER_NOTICE);
expect(true)->toBeTrue();
});
describe('a "describe" group of tests', function () {
test('notice', function () {
trigger_error('This is a notice description', E_USER_NOTICE);
expect(true)->toBeTrue();
});
});
Function Calls
None |
Stats
MD5 | c548640f597df91850c1ab8a97e74da1 |
Eval Count | 0 |
Decode Time | 94 ms |