Tools, FAQ, Tutorials:
Splitting a String into an Array in PHP
How To Split a String into an Array of Substring in PHP?
✍: FYIcenter.com
There are two functions you can use to split a string into an Array of Substring:
Both functions will use the given criteria, substring or pattern, to find the splitting points in the string, break the string into pieces at the splitting points, and return the pieces in an array. Here is a PHP script on how to use explode() and split():
<?php $list = explode("_","php_string_function.html"); print("explode() returns:\n"); print_r($list); $list = split("[_.]","php_string_function.html"); print("split() returns:\n"); print_r($list); ?>
This script will print:
explode() returns: Array ( [0] => php [1] => string [2] => function.html ) split() returns: Array ( [0] => php [1] => string [2] => function [3] => html )
The output shows you the power of power of split() with a regular expression pattern as the splitting criteria. Pattern "[_.]" tells split() to split whenever there is a "_" or ".".
⇒ Getting Minimum/Maximum Value of an Array in PHP
⇐ Joining Array Values into a Single String in PHP
2016-12-28, 1909🔥, 0💬
Popular Posts:
How to decode the id_token value received from Google OpenID Connect authentication response? Accord...
How To Merge Cells in a Column? If you want to merge multiple cells vertically in a row, you need to...
How to use the JSON to XML Conversion Tool at freeformatter.com? If you want to try the JSON to XML ...
Where to find tutorials on Using Azure API Management Publisher Dashboard? Here is a list of tutoria...
How To Avoid the Undefined Index Error in PHP? If you don't want your PHP page to give out errors as...