Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

--TEST-- JIT MUL: 001 integer multiplay --INI-- opcache.enable=1 opcache.enable_cli=1 opca..

Decoded Output download

--TEST--
JIT MUL: 001 integer multiplay
--INI--
opcache.enable=1
opcache.enable_cli=1
opcache.file_update_protection=0
opcache.jit_buffer_size=32M
;opcache.jit_debug=257
--EXTENSIONS--
opcache
--FILE--
<?php
function mul2(int $a) {
  $res = $a * 2;
  var_dump($res);
}
function mul4(int $a) {
  $res = $a * 4;
  var_dump($res);
}
function mul111(int $a) {
  $res = $a * 111;
  var_dump($res);
}
mul2(3);
mul4(3);
mul111(3);
?>
--EXPECT--
int(6)
int(12)
int(333)

Did this file decode correctly?

Original Code

--TEST--
JIT MUL: 001 integer multiplay
--INI--
opcache.enable=1
opcache.enable_cli=1
opcache.file_update_protection=0
opcache.jit_buffer_size=32M
;opcache.jit_debug=257
--EXTENSIONS--
opcache
--FILE--
<?php
function mul2(int $a) {
  $res = $a * 2;
  var_dump($res);
}
function mul4(int $a) {
  $res = $a * 4;
  var_dump($res);
}
function mul111(int $a) {
  $res = $a * 111;
  var_dump($res);
}
mul2(3);
mul4(3);
mul111(3);
?>
--EXPECT--
int(6)
int(12)
int(333)

Function Calls

mul2 1
var_dump 1

Variables

$a 3
$res 6

Stats

MD5 df02805e37612b52f53989d87037e6f4
Eval Count 0
Decode Time 98 ms