PHP substr function

substr

(PHP 3, PHP 4, PHP 5)

substr -- Return part of a stringDescriptionstring substr ( string string, int start [, int length] )

substr() returns the portion of string
specified by the start and
length parameters.

If start is non-negative, the returned string
will start at the start'th position in
string, counting from zero. For instance,
in the string 'abcdef', the character at
position 0 is 'a', the
character at position 2 is
'c', and so forth.

Example 1. Basic substr() usage

PHP:
  1. echo substr('abcdef', 1);     // bcdef
  2. echo substr('abcdef', 1, 3)// bcd
  3. echo substr('abcdef', 0, 4)// abcd
  4. echo substr('abcdef', 0, 8)// abcdef
  5. echo substr('abcdef', -1, 1); // f
  6.  
  7. // Accessing single characters in a string
  8. // can also be achived using "curly braces"
  9. $string = 'abcdef';
  10. echo $string{0};                 // a
  11. echo $string{3};                 // d
  12. echo $string{strlen($string)-1}; // f

If start is negative, the returned string
will start at the start'th character
from the end of string.

Example 2. Using a negative start

PHP:
  1. $rest = substr("abcdef", -1);    // returns "f"
  2. $rest = substr("abcdef", -2);    // returns "ef"
  3. $rest = substr("abcdef", -3, 1); // returns "d"

If length is given and is positive, the string
returned will contain at most length characters
beginning from start (depending on the length of
string). If string is less
than or equal to start characters long, FALSE
will be returned.

If length is given and is negative, then that many
characters will be omitted from the end of string
(after the start position has been calculated when a
start is negative). If
start denotes a position beyond this truncation,
an empty string will be returned.

Example 3. Using a negative length

PHP:
  1. $rest = substr("abcdef", 0, -1)// returns "abcde"
  2. $rest = substr("abcdef", 2, -1)// returns "cde"
  3. $rest = substr("abcdef", 4, -4)// returns ""
  4. $rest = substr("abcdef", -3, -1); // returns "de"

See also strrchr(),
substr_replace(),
preg_match(),
trim(),
mb_substr() and
wordwrap().

These icons link to social bookmarking sites where readers can share and discover new web pages.
  • Digg
  • del.icio.us
  • Netvouz
  • DZone
  • Reddit
  • Furl
  • NewsVine
  • Simpy
  • Slashdot
  • Spurl
  • StumbleUpon
  • YahooMyWeb
  • TailRank

Home | PHP Functions | PHP substr function