Open In App

PHP | startsWith() and endsWith() Functions

startsWith() Function

The StartsWith() function is used to test whether a string begins with the given string or not. This function is case insensitive and it returns boolean value. This function can be used with Filter function to search the data.
Syntax



bool startsWith( string, startString )

Parameters: This function accepts two parameters as mentioned above and described below:

Return Value: This function returns True on success or False on failure.
Example 1:




<?php
  
// Function to check string starting
// with given substring
function startsWith ($string, $startString)
{
    $len = strlen($startString);
    return (substr($string, 0, $len) === $startString);
}
  
// Main function
if(startsWith("abcde","c"))
    echo "True";
else
    echo "False";
?> 

Output:

False

Example 2:




<?php
  
// Function to check string starting
// with given substring
function startsWith ($string, $startString)
{
    $len = strlen($startString);
    return (substr($string, 0, $len) === $startString);
}
  
// Main function
if(startsWith("abcde","a"))
    echo "True";
else
    echo "False";
?> 

Output:
True

endsWith() Function

The endsWith() function is used to test whether a string ends with the given string or not. This function is case insensitive and it returns boolean value. The endsWith() function can be used with the Filter function to search the data.

Syntax:

bool endsWith( string, endString )

Parameter:

Return Value: This function returns True on success or False on failure.

Example 1:




<?php
  
// Function to check the string is ends 
// with given substring or not
function endsWith($string, $endString)
{
    $len = strlen($endString);
    if ($len == 0) {
        return true;
    }
    return (substr($string, -$len) === $endString);
}
  
// Driver code
if(endsWith("abcde","de"))
    echo "True";
else
    echo "False";
?> 

Output:
True

Example 2:




<?php
  
// Function to check the string is ends 
// with given substring or not
function endsWith($string, $endString)
{
    $len = strlen($endString);
    if ($len == 0) {
        return true;
    }
    return (substr($string, -$len) === $endString);
}
  
// Driver code
if(endsWith("abcde","dgfe"))
    echo "True";
else
    echo "False";
?> 

Output:
False

PHP is a server-side scripting language designed specifically for web development. You can learn PHP from the ground up by following this PHP Tutorial and PHP Examples.


Article Tags :