PHP strrpos finden die Position des letzten Auftretens eines Substrings in einer Schnur

<?php

$pos = strrpos($mystring, "b");
if ($pos === false) { // note: three equal signs
    // not found...
}

?>
SAMER SAEID