mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Fix bug #66203 (Syntax error in example code)
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@332228 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
a8d6c3eb33
commit
35787490f2
1 changed files with 1 additions and 1 deletions
|
@ -1310,7 +1310,7 @@ var_dump(1 == TRUE); // TRUE - same as (bool)1 == TRUE
|
|||
var_dump(0 == FALSE); // TRUE - same as (bool)0 == FALSE
|
||||
var_dump(100 < TRUE); // FALSE - same as (bool)100 < TRUE
|
||||
var_dump(-10 < FALSE);// FALSE - same as (bool)-10 < FALSE
|
||||
var_dump(min(-100,-10, NULL, 10, 100); // NULL - (bool)NULL < (bool)-100 is FALSE < TRUE
|
||||
var_dump(min(-100, -10, NULL, 10, 100)); // NULL - (bool)NULL < (bool)-100 is FALSE < TRUE
|
||||
?>
|
||||
]]>
|
||||
</programlisting>
|
||||
|
|
Loading…
Reference in a new issue