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, 1988🔥, 0💬
Popular Posts:
How to create Hello-3.1.epub with WinRAR? I have all required files to create Hello-3.1.epub. To cre...
How to convert JSON Objects to PHP Associative Arrays using the json_decode() function? Actually, JS...
What is the Azure AD v1.0 OpenID Metadata Document? Azure AD v1.0 OpenID Metadata Document is an onl...
How to use the JSON to XML Conversion Tool at freeformatter.com? If you want to try the JSON to XML ...
How to use the "forward-request" Policy Statement to call the backend service for an Azure API servi...