vote up 3 vote down star
1

The standard PHP way to test whether a string $str ends with a substring $test is:

$endsWith = substr( $str, -strlen( $test ) ) == $test

Is this the fastest way?

flag

5 Answers

vote up 3 vote down check

What Assaf said is correct. There is a built in function in PHP to do exactly that.

substr_compare($str, $test, -strlen($test), strlen($test)) == 0;

If you are not using PHP 5.1 or higher you will need to calculate the offset a little differently because you cannot use a negative offset.

substr_compare($str, $test, strlen($str)-strlen($test), strlen($test)) == 0;

If the $test is longer than $str PHP will give a warning, so you need to check for that first.

function endswith($string, $test) {
    $strlen = strlen($string);
    $testlen = strlen($test);
    if ($testlen > $strlen) return false;
    return substr_compare($string, $test, -$testlen) === 0;
}
link|flag
Nice. It does seem like comparing in-place would be faster than substr(), as Assaf pointed out. – Jason Cohen Mar 6 at 18:51
vote up 2 vote down

Another way would be to use the strrpos function:

strrpos($str, $test) == strlen($str) - strlen($test)

But that’s not faster.

link|flag
vote up 1 vote down

It depends on which sort of efficiency you care about.

Your version uses more memory due to the extra copy from the use of substr.

An alternative version might search the original string for the last occurrence of the substring without making a copy, but would probably be slower due to more testing.

Probably the most efficient way is to do loop char-by-char from the -sterlen(test) position till the end of the string and compare. That's the minimal amount of comparisons you can hope to do and there's hardly any extra memory used.

link|flag
vote up 0 vote down

I'm thinking the reverse functions like strrchr() would help you match the end of the string the fastest.

link|flag
vote up 0 vote down

mcrumley's answer is cool, but it should use '===' instead of '=='. '===' is more strict and usually does what you want, while '==' can lead to nasty surprises.

mcrumley's third code snippet is correct, but the first two aren't. substr_compare() returns false in some error cases. In PHP, false == 0, so the code snippets would signal that the string has been found. With ===, this doesn't happen.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.