Tools, FAQ, Tutorials:
Taking a Substring in PHP
How To Take a Substring from a Given String?
✍: FYIcenter.com
If you know the position of a substring in a given string, you can take the substring out by the substr() function. Here is a PHP script on how to use substr():
<?php $string = "beginning"; print("Position counted from left: ".substr($string,0,5)."\n"); print("Position counted form right: ".substr($string,-7,3)."\n"); ?>
This script will print:
Position counted from left: begin Position counted form right: gin
substr() can take negative starting position counted from the end of the string.
⇒ Replacing a Substring in PHP
⇐ Testing the strpos() Return Value in PHP
2016-10-13, 1986🔥, 0💬
Popular Posts:
What is EPUB 3.0 Metadata "dc:publisher" and "dc:rights" elements? EPUB 3.0 Metadata "dc:publisher" ...
What is EPUB 2.0 Metadata "dc:creator" and "dc:contributor" elements? EPUB 2.0 Metadata "dc:creator"...
How to use the RSS Online Validator at w3.org? You can follow this tutorial to learn how to use the ...
What is Azure API Management Publisher Dashboard? Azure API Management Publisher Dashboard is an Azu...
How to use the "Ctrl-p Ctrl-q" sequence to detach console from the TTY terminal of container's runni...