搜索一个子字符串,如果它在最后,则返回true

时间:2013-08-28 05:34:06

标签: php substring

我想在php中搜索一个子字符串,以便它位于给定字符串的末尾。 例如 在字符串'abd def'上,如果我搜索def,它将在最后,所以返回true。但是如果我搜索abd,它将返回false,因为它不在最后。

有可能吗?

5 个答案:

答案 0 :(得分:1)

您可以使用preg_match

$str = 'abd def';
$result = (preg_match("/def$/", $str) === 1);
var_dump($result);

答案 1 :(得分:1)

另一种方法,不需要通过分隔符或正则表达式进行拆分。这将测试最后x个字符是否等于测试字符串,其中x等于测试字符串的长度:

$string = "abcdef";
$test = "def";

if(substr($string, -(strlen($test))) === $test)
{
    /* logic here */
}

答案 2 :(得分:0)

假设整个词:

$match = 'def';
$words = explode(' ', 'abd def');

if (array_pop($words) == $match) {
  ...
}

或使用正则表达式:

if (preg_match('/def$/', 'abd def')) {
  ...
}

答案 3 :(得分:0)

无论是完整的单词还是其他任何内容,这个答案应该是完全健壮的

$match = 'def';
$words = 'abd def';

$location = strrpos($words, $match); // Find the rightmost location of $match
$matchlength = strlen($match);       // How long is $match

/* If the rightmost location + the length of what's being matched
 * is equal to the length of what's being searched,
 * then it's at the end of the string
 */
if ($location + $matchlength == strlen($words)) {
    ...
}

答案 4 :(得分:0)

请查看strrchr()功能。试试这个

$word   = 'abcdef';
$niddle = 'def';
if (strrchr($word, $niddle) == $niddle) {
    echo 'true';
} else {
    echo 'false';
}