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
link|improve this question

6  
<3 your handle, by the way. – retrodrone Jul 6 '11 at 19:01
feedback

16 Answers

up vote 175 down vote accepted
function startsWith($haystack, $needle)
{
    $length = strlen($needle);
    return (substr($haystack, 0, $length) === $needle);
}

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

    $start  = $length * -1; //negative
    return (substr($haystack, $start) === $needle);
}

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

link|improve this answer
2  
+1 This is cleaner than the accepted answer. Also, $length is not needed in the last line of the endsWith(). – too much php Sep 17 '09 at 2:57
variable names are unclear. eg, char is a string, not a single char. Perhaps consider rename params to conventional php $haystack and $needle. – timoxley Feb 1 '11 at 1:33
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
4  
-1 endsWith('foo','') returns false, should be true. – postfuturist May 27 '11 at 21:04
2  
@postfuturist You are correct, function "endsWith" should be modified to check if strlen($needle)>0. – Rauni Aug 29 '11 at 11:48
show 4 more comments
feedback

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;
}
link|improve this answer
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
Corrected, thanks – Sander Rijken Aug 6 '10 at 7:31
2  
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
you think scanning the entire string is cheaper than checking just the beginning? i don't think strpos is any cheaper. – Mark Mar 3 '11 at 21:26
1  
@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
feedback

Here you go:

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:

link|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
feedback

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);
 }
link|improve this answer
1  
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
feedback
<?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;
}

$iters = 5000000;

$start = microtime(true);
for($i=0; $i<$iters; ++$i) {
    startswith1('abcdef','abc');
}
echo 'startswith1: '.(microtime(true)-$start).' seconds'.PHP_EOL;

$start = microtime(true);
for($i=0; $i<$iters; ++$i) {
    startswith2('abcdef','abc');
}
echo 'startswith2: '.(microtime(true)-$start).' seconds'.PHP_EOL;

$start = microtime(true);
for($i=0; $i<$iters; ++$i) {
    startswith3('abcdef','abc');
}
echo 'startswith3: '.(microtime(true)-$start).' seconds'.PHP_EOL;

$start = microtime(true);
for($i=0; $i<$iters; ++$i) {
    startswith4('abcdef','abc');
}
echo 'startswith4: '.(microtime(true)-$start).' seconds'.PHP_EOL;

$start = microtime(true);
for($i=0; $i<$iters; ++$i) {
    startswith5('abcdef','abc');
}
echo 'startswith5: '.(microtime(true)-$start).' seconds'.PHP_EOL;

Results

startswith1: 3.9879159927368 seconds
startswith2: 6.7661368846893 seconds
startswith3: 4.0187101364136 seconds
startswith4: 2.7647058963776 seconds
startswith5: 3.8166489601135 seconds
link|improve this answer
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
feedback

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;
}
link|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
feedback

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
link|improve this answer
feedback

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.

link|improve this answer
feedback

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);
}
link|improve this answer
little bit old question – genesis Jun 28 '11 at 22:46
feedback

My personal preference would be eliminating all code repeats, so here is another version of Sander Rijken's method:

function contains($haystack, $needle, $case = true, $pos = 0)
{
    if ($case)
    {
        $result = (strpos($haystack, $needle, 0) === $pos);
    }
    else
    {
        $result = (stripos($haystack, $needle, 0) === $pos);
    }

    return $result;
}

function starts_with($haystack, $needle, $case = true)
{
    return contains($haystack, $needle, $case, 0);
}

function ends_with($haystack, $needle, $case = true)
{
    return contains($haystack, $needle, $case, (strlen($haystack) - strlen($needle)));
}
link|improve this answer
feedback

You also can use regular expressions:

function endsWith($haystack, $needle, $case=true) {
  return preg_match("/.*{$needle}$/" . (($case) ? "" : "i"), $haystack);
}
link|improve this answer
feedback

Here's just a fix on Sander Rijken's method. The $expectedPosition calculation is slightly off in endsWith. (The last -1 is not necessary).

    function startsWith($string, $prefix, $caseSensitive = true) {
    if(!$caseSensitive) {
        return stripos($string, $prefix, 0) === 0;
    }
    return strpos($string, $prefix, 0) === 0;
}

function endsWith($string, $postfix, $caseSensitive = true) {
    $expectedPostition = strlen($string) - strlen($postfix);

    if(!$caseSensitive) {
        return strripos($string, $postfix, 0) === $expectedPostition;
    }
    return strrpos($string, $postfix, 0) === $expectedPostition;
}
link|improve this answer
feedback

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;
}
link|improve this answer
feedback

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

link|improve this answer
feedback

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;
}
link|improve this answer
feedback

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
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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