Voting

: max(eight, zero)?
(Example: nine)

The Note You're Voting On

notepad at codewalkers dot com
20 years ago
<?php

function stristr_reverse($haystack, $needle) {
$pos = stripos($haystack, $needle) + strlen($needle);
return
substr($haystack, 0, $pos);
}
$email = '[email protected]';
echo
stristr_reverse($email, 'er');
// outputs USER

?>

<< Back to user notes page

To Top