public function before_last($tthis, $inthat)
 {
     return substr($inthat, 0, strrevpos($inthat, $tthis));
 }
Example #2
0
 function before_last($needle, $haystack)
 {
     return substr($haystack, 0, strrevpos($haystack, $needle));
 }