IS_SMALLER_OR_EQUAL
PHP code
<?php
/*
* compares if value1 is less than or equal to value2
* opcode number: 20
*/
echo (2 <= 1);
?>
PHP opcodes
<?php
/*
* compares if value1 is less than or equal to value2
* opcode number: 20
*/
echo (2 <= 1);
?>
PHP opcodes
Function name: (null)
Compiled variables: none
User Contributed Notes
There are no user contributed notes for this page.官方地址:https://www.php.net/manual/en/internals2.opcodes.is-smaller-or-equal.php