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, 1880🔥, 0💬
Popular Posts:
What are "*..." and "**..." Wildcard Parameters in Function Definitions? If you want to define a fun...
What is test testing area for? The testing area is provided to allow visitors to post testing commen...
How to use "json-to-xml" Azure API Policy Statement? The "json-to-xml" Policy Statement allows you t...
What properties and functions are supported on http.client.HTTPResponse objects? If you get an http....
How To Avoid the Undefined Index Error in PHP? If you don't want your PHP page to give out errors as...