[go: nahoru, domu]

PHP 8.4.0 RC4 available for testing

Voting

: eight plus one?
(Example: nine)

The Note You're Voting On

Yanik Lupien
17 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