Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need two functions that would take a string and return if it starts with the specified character/string or ends with it.

For example:

$str='|apples}';

echo startsWith($str,'|'); //Returns true
echo endsWith($str,'}'); //Returns true
share|improve this question
33  
<3 your handle, by the way. – retrodrone Jul 6 '11 at 19:01

15 Answers

up vote 427 down vote accepted
function startsWith($haystack, $needle)
{
    return !strncmp($haystack, $needle, strlen($needle));
}

function endsWith($haystack, $needle)
{
    $length = strlen($needle);
    if ($length == 0) {
        return true;
    }

    return (substr($haystack, -$length) === $needle);
}

Use this if you don't want to use a regex.

share|improve this answer
3  
Just FYI, the $length parameter in endsWith() is redundant, since substr() will terminate at the end of the string anyway. – AgentConundrum Feb 7 '11 at 18:11
11  
-1 endsWith('foo','') returns false, should be true. – postfuturist May 27 '11 at 21:04
4  
@postfuturist You are correct, function "endsWith" should be modified to check if strlen($needle)>0. – Rauni Aug 29 '11 at 11:48
27  
for startsWith, return !strncmp($haystack, $needle, strlen($needle)) is faster (doesn't create an intermediate string) – Walter Tross May 30 '12 at 10:11
19  
EndsWith can be written a lot shorter: return substr($haystack, -strlen($needle))===$needle; – Rok Kralj Jun 11 '12 at 9:57
show 9 more comments

All answers above seem to do loads of unnecessary work, strlen calculations, string allocations (substr) etc. The 'strpos' and 'stripos' functions return the index of the first occurrence of $needle in $haystack

function startsWith($haystack,$needle,$case=true)
{
   if($case)
       return strpos($haystack, $needle, 0) === 0;

   return stripos($haystack, $needle, 0) === 0;
}

function endsWith($haystack,$needle,$case=true)
{
  $expectedPosition = strlen($haystack) - strlen($needle);

  if($case)
      return strrpos($haystack, $needle, 0) === $expectedPosition;

  return strripos($haystack, $needle, 0) === $expectedPosition;
}
share|improve this answer
2  
endsWith() function has an error. Its first line should be (without the -1): $expectedPosition = strlen($haystack) - strlen($needle); – Enrico Detoma Aug 5 '10 at 17:16
4  
The strlen() thing is not unnecessary. In case the string doesn't start with the given needle then ur code will unnecessarily scan the whole haystack. – AppleGrew Jan 4 '11 at 15:46
5  
@Mark yea, checking just the beginning is a LOT faster, especially if you're doing something like checking MIME types (or any other place where the string is bound to be large) – chacham15 Sep 26 '11 at 15:39
1  
@mark I did some benchmarks with 1000 char haystack and 10 or 800 char needle and strpos was 30% faster. Do your benchmarks before stating that something is faster or not... – wdev Aug 6 '12 at 0:39
2  
You should strongly consider quoting the needle like strpos($haystack, "$needle", 0) if there's any chance it's not already a string (e.g., if it's coming from json_decode()). Otherwise, the [odd] default behavior of strpos() may cause unexpected results: "If needle is not a string, it is converted to an integer and applied as the ordinal value of a character." – user113215 Dec 3 '12 at 3:47
show 6 more comments

revised Feb 2013

<?php

function startswith1($haystack, $needle) {
    return substr($haystack, 0, strlen($needle)) === $needle;
}

function startswith2($haystack, $needle) {
    return preg_match('/^'.preg_quote($needle,'/').'/', $haystack) > 0;
}

function startswith3($haystack, $needle) {
    return substr_compare($haystack, $needle, 0, strlen($needle)) === 0;
}

function startswith4($haystack, $needle) {
    return strpos($haystack, $needle) === 0;
}

function startswith5($haystack, $needle) {
    return strncmp($haystack, $needle, strlen($needle)) === 0;
}

function randstr($len=8, $chars='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789') {
    $str = '';
    $randmax = strlen($chars)-1;

    for(;$len--;) {
        $str .= $chars[mt_rand(0,$randmax)];
    }

    return $str;
}


echo 'generating tests';
for($i=0; $i<100000; ++$i) {
    if($i%1000===0) echo '.';
    $test_cases[] = array(
        'haystack' => randstr(mt_rand(1,7000)),
        'needle' => randstr(mt_rand(1,3000)),
    );
}
echo "done!\n";

$start = microtime(true);
foreach($test_cases as $tc) {
    startswith1($tc['haystack'],$tc['needle']);
}
echo 'startswith1: '.(microtime(true)-$start).' seconds'.PHP_EOL;

$start = microtime(true);
foreach($test_cases as $tc) {
    startswith2($tc['haystack'],$tc['needle']);
}
echo 'startswith2: '.(microtime(true)-$start).' seconds'.PHP_EOL;

$start = microtime(true);
foreach($test_cases as $tc) {
    startswith3($tc['haystack'],$tc['needle']);
}
echo 'startswith3: '.(microtime(true)-$start).' seconds'.PHP_EOL;

$start = microtime(true);
foreach($test_cases as $tc) {
    startswith4($tc['haystack'],$tc['needle']);
}
echo 'startswith4: '.(microtime(true)-$start).' seconds'.PHP_EOL;

$start = microtime(true);
foreach($test_cases as $tc) {
    startswith5($tc['haystack'],$tc['needle']);
}
echo 'startswith5: '.(microtime(true)-$start).' seconds'.PHP_EOL;

Results

startswith1: 0.26411914825439 seconds
startswith2: 5.5287990570068 seconds
startswith3: 0.29700589179993 seconds
startswith4: 0.3069760799408 seconds
startswith5: 0.29142212867737 seconds
share|improve this answer
2  
Probably should have used a variety of strings to test with...maybe I'll come back to this later. Don't have time now. – Mark Aug 24 '11 at 0:15
Not probably, you should have. Especially with a very laaaaarge haystack not containing the needle at all. – hakre Feb 28 at 12:05
@hakre: updated. feel free to tweak the numbers; it takes forever to run with the random string generator. – Mark Mar 1 at 0:52

Both functions can be written using one line of code:

function startsWith($haystack, $needle)
{
    return strpos($haystack, $needle) === 0;
}
function endsWith($haystack, $needle)
{
    return substr($haystack, -strlen($needle)) == $needle;
}

var_dump(startsWith("hello world", "hello")); // true
var_dump(endsWith("hello world", "world"));   // true
share|improve this answer
5  
I wonder why the other solution is more popular, this one is shorter – xcx Jun 29 '12 at 13:16
1  
This answer isn't near top, so lazy people don't get this far down. IMHO, best answer. Simple, fast, and works for more than just a letter. – Chris K Feb 21 at 20:46
3  
Succinct solution but keep in mind it's case-sensitive. – aleemb Apr 6 at 15:51
endsWith() gives false when $needle is empty string (and $haystach is not), should return true I think – Stefaan Apr 30 at 9:25
function startsWith($haystack,$needle,$case=true) {
    if($case){return (strcmp(substr($haystack, 0, strlen($needle)),$needle)===0);}
    return (strcasecmp(substr($haystack, 0, strlen($needle)),$needle)===0);
}

function endsWith($haystack,$needle,$case=true) {
    if($case){return (strcmp(substr($haystack, strlen($haystack) - strlen($needle)),$needle)===0);}
    return (strcasecmp(substr($haystack, strlen($haystack) - strlen($needle)),$needle)===0);
}

Credit To:

Check if a string ends with another string

Check if a string begins with another string

share|improve this answer
3  
Can you edit your answer and copy and paste the code in it for future reference in case the links go down. You can select the code and hit ctrl + k to highlight it. Then I can accept your answer – Click Upvote May 7 '09 at 12:18
Editted, should be good now. – WebDevHobo May 7 '09 at 12:37
I edited to make it a bit more readable – Click Upvote May 7 '09 at 12:41
6  
I see complaining and no solution... If you're gonna say it's bad, then you should give an example of how it should be as well. – WebDevHobo May 14 '09 at 11:06
1  
@WebDevHobo: that's why I added an answer myself a day before your comment. For your code strcasecmp was indeed the right thing to do. – Sander Rijken Aug 6 '10 at 7:34
show 2 more comments

The regex functions above, but with the other tweaks also suggested above:

 function startsWith($needle, $haystack) {
     return preg_match('/^' . preg_quote($needle, '/') . '/', $haystack);
 }

 function endsWith($needle, $haystack) {
     return preg_match('/' . preg_quote($needle, '/') . '$/', $haystack);
 }
share|improve this answer
3  
you need to do preg_quote($needle,'/') otherwise the quoting is moot ;) also $ will match a \n without the D modifier – Mark Jul 28 '11 at 18:57
1  
@Mark: I've added it, thanks! – Krinkle Nov 16 '12 at 15:11

I realize this has been finished, but you may want to look at strncmp as it allows you to put the length of the string to compare against, so:

function startsWith($haystack, $needle, $case=true) {
    if ($case)
        return strncasecmp($haystack, $needle, strlen($needle)) == 0;
    else
        return strncmp($haystack, $needle, strlen($needle)) == 0;
}
share|improve this answer
how would you do endswith with this? – Mark Aug 26 '11 at 15:20
@Mark - you can look at the accepted answer, but I prefer to use strncmp mainly because I think it is safer. – James Black Aug 26 '11 at 16:45
I mean with strncmp specifically. You can't specify an offset. That would mean your endsWith function would have to use a different method entirely. – Mark Aug 26 '11 at 18:50
@Mark - For endsWith I would just use strrpos (php.net/manual/en/function.strrpos.php), but, generally, anytime you go to use strcmp strncmp is probably a safer option. – James Black Aug 27 '11 at 0:15

If speed is important for you, try this.(I believe it is the fastest method)

Works only for strings and if $haystack is only 1 character

function startsWithChar($needle, $haystack)
{
   return ($needle[0] === $haystack);
}

function endsWithChar($needle, $haystack)
{
   return ($needle[strlen($needle) - 1] === $haystack);
}

$str='|apples}';
echo startsWithChar($str,'|'); //Returns true
echo endsWithChar($str,'}'); //Returns true
echo startsWithChar($str,'='); //Returns false
echo endsWithChar($str,'#'); //Returns false
share|improve this answer
"I believe it is the fastest method" - do you have any arguments to support this otherwise useless sentence? – bažmegakapa Feb 28 at 13:59

Short and easy-to-understand one-liners without regular expressions.

startsWith() is straight forward.

function startsWith($haystack, $needle) {
   return (strpos($haystack, $needle) === 0);
}

endsWith() uses the slightly fancy and slow strrev():

function endsWith($haystack, $needle) {
   return (strpos(strrev($haystack), strrev($needle)) === 0);
}
share|improve this answer
little bit old question – genesis Jun 28 '11 at 22:46

in short:

function startsWith($str, $needle){
   return substr($str, 0, strlen($needle)) === $needle;
}

function endsWith($str, $needle){
   $length = strlen($needle);
   return !$length || substr($str, - $length) === $needle;
}
share|improve this answer

Based on James Black's answer, here is its endsWith version:

function startsWith($haystack, $needle, $case=true) {
    if ($case)
        return strncmp($haystack, $needle, strlen($needle)) == 0;
    else
        return strncasecmp($haystack, $needle, strlen($needle)) == 0;
}

function endsWith($haystack, $needle, $case=true) {
     return startsWith(strrev($haystack),strrev($needle),$case);

}

Note: I have swapped the if-else part for James Black's startsWith function, because strncasecmp is actually the case-insensitive version of strncmp.

share|improve this answer

You also can use regular expressions:

function endsWith($haystack, $needle, $case=true) {
  return preg_match("/.*{$needle}$/" . (($case) ? "" : "i"), $haystack);
}
share|improve this answer
1  
$needle should be escaped with preg_quote($needle, '/'). – Krinkle Nov 16 '12 at 15:10

The substr function can return false in many special cases, so here is my version, which deals with these issues:

function startsWith( $haystack, $needle ){
  return $needle === ''.substr( $haystack, 0, strlen( $needle )); // substr's false => empty string
}

function endsWith( $haystack, $needle ){
  $len = strlen( $needle );
  return $needle === ''.substr( $haystack, -$len, $len ); // ! len=0
}

Tests (true means good):

var_dump( startsWith('',''));
var_dump( startsWith('1',''));
var_dump(!startsWith('','1'));
var_dump( startsWith('1','1'));
var_dump( startsWith('1234','12'));
var_dump(!startsWith('1234','34'));
var_dump(!startsWith('12','1234'));
var_dump(!startsWith('34','1234'));
var_dump('---');
var_dump( endsWith('',''));
var_dump( endsWith('1',''));
var_dump(!endsWith('','1'));
var_dump( endsWith('1','1'));
var_dump(!endsWith('1234','12'));
var_dump( endsWith('1234','34'));
var_dump(!endsWith('12','1234'));
var_dump(!endsWith('34','1234'));

Also, the substr_compare function also worth looking. http://www.php.net/manual/en/function.substr-compare.php

share|improve this answer

Why not

//how to check if a string begins with another string
$haystack = "valuehaystack";
$needle = "value";
if(strpos($haystack, $needle) === 0){
    echo "Found " . $needle . " at the beginning of " . $haystack . "!";
}

output:

Found value at the beginning of valuehaystack!

Keep in mind, strpos will return false if the needle was not found in the haystack, and will return 0 if, and only if, needle was found at index 0. (aka the beginning)

and here's ends with:

$haystack = "valuehaystack";
$needle = "haystack";
//if index of the needle plus the length of the needle is the same length as the entire haystack.
if(strpos($haystack, $needle)+strlen($needle) === strlen($haystack)){
    echo "Found " . $needle . " at the end of " . $haystack . "!";
}

In this scenario there is no need for a function startsWith() as

(strpos($stringToSearch, $doesItStartWithThis) === 0)

will return true or false accurately.

Seems odd it's this simple with all the wild functions running rampant here

share|improve this answer

Here’s an efficient solution for PHP 4. You could get faster results if on PHP 5 by using substr_compare instead of strcasecmp(substr(...)).

function stringBeginsWith($haystack, $beginning, $caseInsensitivity = false)
{
    if ($caseInsensitivity)
        return strncasecmp($haystack, $beginning, strlen($beginning)) == 0;
    else
        return strncmp($haystack, $beginning, strlen($beginning)) == 0;
}

function stringEndsWith($haystack, $ending, $caseInsensitivity = false)
{
    if ($caseInsensitivity)
        return strcasecmp(substr($haystack, strlen($haystack) - strlen($ending)), $haystack) == 0;
    else
        return strpos($haystack, $ending, strlen($haystack) - strlen($ending)) !== false;
}
share|improve this answer

protected by DaveRandom Feb 28 at 12:17

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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