Voting

: max(five, seven)?
(Example: nine)

The Note You're Voting On

Yanik Lupien
18 years ago
Simple way to implement this function in PHP 4

<?php
if (function_exists('strripos') == false) {
function
strripos($haystack, $needle) {
return
strlen($haystack) - strpos(strrev($haystack), $needle);
}
}

?>

<< Back to user notes page

To Top