示例#1
0
文件: String.php 项目: noon/phpMyFAQ
 /**
  * Find position of last occurrence of a char in a string
  * @param string $haystack
  * @param string $needle
  * @param int $offset
  * 
  * @return int
  */
 public static function strrpos($haystack, $needle, $offset = 0)
 {
     return self::$instance->strrpos($haystack, $needle, $offset);
 }