如果可能的话,只使用标准的PHP函数,如substr(),strrpos(),strpos()等。
答案 0 :(得分:26)
首先,找到最后一个位置:
$last = strrpos($haystack, $needle);
if ($last === false) {
return false;
}
从那里,找到最后的第二个:
$next_to_last = strrpos($haystack, $needle, $last - strlen($haystack) - 1);
答案 1 :(得分:8)
任意数量向后步骤的一般解决方案:
function strrpos_count($haystack, $needle, $count)
{
if($count <= 0)
return false;
$len = strlen($haystack);
$pos = $len;
for($i = 0; $i < $count && $pos; $i++)
$pos = strrpos($haystack, $needle, $pos - $len - 1);
return $pos;
}
答案 2 :(得分:1)
使用strpos
:
$pos = -1; $last = null; $secondLast = null;
while (($pos = strpos($haystack, $needle, $pos+1)) !== false) {
$secondLast = $last;
$last = $pos;
}
if (!is_null($secondLast)) {
echo 'second last occured on '.$secondLast;
}
答案 3 :(得分:0)
搜索正则表达式(如果我错了,请纠正我,以及如何用PHP编写):
r'x[^x]*x[^x]*$'.replace('x',your_char)
答案 4 :(得分:0)
我认为这不能用strrpos完成,因为位置开始没有 以你期望的方式工作。
没有任何明显的方法,但这个功能应该这样做。 (没有经过实际测试,但我认为它有效)。
/** Return the position of the second last needle in haystack or false if nothing is found. I really hate functions with return types that depend on their input, but this function is made to look like the similary php functions (strpos, strrpos and so on) */
// Needle must be a char. If you want it to be a string instead, just substr
// length of needle instead of 1 in this example.
function findSecondLastChar($needle,$haystack) {
$found=0;
for($pos=strlen($haystack)-1;$pos>=0;$pos--) {
if(substr($haystack,$pos,1)==$needle) {
if($found++ == 1)
return $pos;
}
}
// If we reach this, nothing were found
return false;
}
答案 5 :(得分:0)
您可以使用两个带有负偏移量的 strrpos 来实现这一点:
$str = 'foo fighters fight foo';
$p0 = strrpos($str,' '); // get position o last space
$os = -strlen($str)+$p0-1; // negative search offset
$p1 = strrpos($str,' ',$os); // position of the second last space
echo '"'.substr($str,$p1).'"'; // result