parent root
PHP: IS_SMALLER_OR_EQUAL - Manual
PHP 7.2.23 Release Announcement

IS_SMALLER_OR_EQUAL

PHP code

<?php
/*
 * compares if value1 is less than or equal to value2
 * opcode number: 20
 */
echo (<= 1);
?>

PHP opcodes

Function name: (null)

Compiled variables: none

line#op fetchextreturn operands
60 IS_SMALLER_OR_EQUAL   ~0 2,1
 1 ECHO     ~0
72 RETURN     1
add a noteadd a note

User Contributed Notes

There are no user contributed notes for this page.
To Top
parent root