Never use a < character in examples or ordinary text.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@50501 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Egon Schmid 2001-07-02 19:44:44 +00:00
parent cb88ec112a
commit 1c003b122b

View file

@ -3062,7 +3062,7 @@ while (list ($key, $value) = each ($a)) {
<programlisting role="php">
function cmp ($a, $b) {
if ($a == $b) return 0;
return ($a < $b) ? -1 : 1;
return ($a &lt; $b) ? -1 : 1;
}
$a = array (3, 2, 5, 6, 1);