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 class ValidateMatrixByMatrix extends Handler { use ScalarAddressMode, BinaryOpera..
Decoded Output download
<?php
class ValidateMatrixByMatrix extends Handler {
use ScalarAddressMode, BinaryOperatorNoResult, MayEmitError;
public function getActionOnUnitData() {
$cType = $this->getOperandCType(1);
$lines = array();
$lines[] = "if(op1 != op2) {";
$lines[] = "qb_report_invalid_matrix_multiplication_exception(line_id, op1, op2, 1 | 2);";
$lines[] = "cxt->exit_type = QB_VM_ERROR;";
$lines[] = "return;";
$lines[] = "}";
return $lines;
}
}
?>
Did this file decode correctly?
Original Code
<?php
class ValidateMatrixByMatrix extends Handler {
use ScalarAddressMode, BinaryOperatorNoResult, MayEmitError;
public function getActionOnUnitData() {
$cType = $this->getOperandCType(1);
$lines = array();
$lines[] = "if(op1 != op2) {";
$lines[] = "qb_report_invalid_matrix_multiplication_exception(line_id, op1, op2, 1 | 2);";
$lines[] = "cxt->exit_type = QB_VM_ERROR;";
$lines[] = "return;";
$lines[] = "}";
return $lines;
}
}
?>
Function Calls
None |
Stats
MD5 | b6756cc7f564dc65eabb79a406e56ed5 |
Eval Count | 0 |
Decode Time | 88 ms |