PHP 8.4.24 Released!

Voting

: six plus one?
(Example: nine)

The Note You're Voting On

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