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('once', function () { expect(true)->toBeTrue(); })->repeat(times: 1); tes..
Decoded Output download
<?php
test('once', function () {
expect(true)->toBeTrue();
})->repeat(times: 1);
test('multiple times', function () {
expect(true)->toBeTrue();
})->repeat(times: 5);
test('multiple times with single dataset', function (int $number) {
expect([1, 2, 3])->toContain($number);
})->repeat(times: 6)->with(['a' => 1, 'b' => 2, 'c' => 3]);
test('multiple times with multiple dataset', function (int $numberA, int $numberB) {
expect([1, 2, 3])->toContain($numberA)
->and([4, 5, 6])->toContain($numberB);
})->repeat(times: 7)->with(['a' => 1, 'b' => 2, 'c' => 3], [4, 5, 6]);
?>
Did this file decode correctly?
Original Code
<?php
test('once', function () {
expect(true)->toBeTrue();
})->repeat(times: 1);
test('multiple times', function () {
expect(true)->toBeTrue();
})->repeat(times: 5);
test('multiple times with single dataset', function (int $number) {
expect([1, 2, 3])->toContain($number);
})->repeat(times: 6)->with(['a' => 1, 'b' => 2, 'c' => 3]);
test('multiple times with multiple dataset', function (int $numberA, int $numberB) {
expect([1, 2, 3])->toContain($numberA)
->and([4, 5, 6])->toContain($numberB);
})->repeat(times: 7)->with(['a' => 1, 'b' => 2, 'c' => 3], [4, 5, 6]);
Function Calls
None |
Stats
MD5 | df8a9d5ec1d7acc5a9497f77028a3000 |
Eval Count | 0 |
Decode Time | 77 ms |