Voting

: min(three, five)?
(Example: nine)

The Note You're Voting On

sydney at totoche dot org
19 years ago
Instead of doing :

<?php $strc = strcmp( strtolower($a[$f]), strtolower($b[$f]) ); ?>

you could do this :

<?php $strc = strcasecmp( $a[$f], $b[$f] ); ?>

which is more efficient and is does case insensitive comparison according to the current locale.

<< Back to user notes page

To Top