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