Thursday, August 28, 2025
HomeLanguagesPHP substr() function

PHP substr() function

The substr() is a built-in function in PHP that is used to extract a part of string.

Syntax:

substr(string_name, start_position, string_length_to_cut)

Parameters:
The substr() function allows 3 parameters or arguments out of which two are mandatory and one is optional.

  1. string_name: In this parameter, we pass the original string or the string that needs to cut or modified. This is a mandatory parameter
  2. start_position: This refers to the position of the original string from where the part needs to be extracted. In this, we pass an integer. If the integer is positive it refers to the start of the position in the string from the beginning. If the integer is negative then it refers to the start of the position from the end of the string. This is also a mandatory parameter.
  3. string_length_to_cut: This parameter is optional and of integer type. This refers to the length of the part of the string that needs to be cut from the original string. If the integer is positive, it refers to start from start_position and extract length from the beginning. If the integer is negative then it refers to start from start_position and extract length from the end of the string. If this parameter is not passed, then the substr() function will return the string starting from start_position till the end of string.

Return Type:
Returns the extracted part of the string if successful otherwise FALSE or an empty string on failure.

Below is a program to illustrate working of substr() in PHP:




<?php
  
// PHP program to illustrate substr()
function Substring($str){
    $len = strlen($str);
    echo substr($str, 8), "\n";
    echo substr($str, 5, $len), "\n";
    echo substr($str, -5, 10), "\n";
    echo substr($str,-8, -5), "\n";
}
  
// Driver Code
$str="neveropen";
Substring($str);
  
?>


Output:

Geeks
forGeeks
Geeks
for
RELATED ARTICLES

Most Popular

Dominic
32244 POSTS0 COMMENTS
Milvus
80 POSTS0 COMMENTS
Nango Kala
6615 POSTS0 COMMENTS
Nicole Veronica
11787 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11831 POSTS0 COMMENTS
Shaida Kate Naidoo
6727 POSTS0 COMMENTS
Ted Musemwa
7008 POSTS0 COMMENTS
Thapelo Manthata
6684 POSTS0 COMMENTS
Umr Jansen
6697 POSTS0 COMMENTS