Php strrpos temukan posisi kejadian terakhir dari substring dalam string
<?php
$pos = strrpos($mystring, "b");
if ($pos === false) { // note: three equal signs
// not found...
}
?>
SAMER SAEID