PHP explode() Function Example Tutorial
This article will provide example of php explode function. I’m going to show you about php explode string to array. it's simple example of php split string to array using explode. This article will give you simple example of explode function in php example.
The PHP explode() function breaks a string into an array. explode() takes a three argument separator, string and limit. limit is a optional.
Let's see below syntax and example:
Syntax:
explode(separator,string,limit)
Example 1:
index.php
<?php
$myString = "Hi, I am ItSolutionStuff.com";
$array = explode(' ', $myString);
print_r($array);
Output:
Array
(
[0] => Hi,
[1] => I
[2] => am
[3] => ItSolutionStuff.com
)
Example 2:
index.php
<?php
$myString = "Rajkot,Surat,Bhavnagar,Baroda";
$array = explode(',', $myString, 3);
print_r($array);
Output:
Array
(
[0] => Rajkot
[1] => Surat
[2] => Bhavnagar
)
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- PHP Explode Every Character into Array Example
- PHP Remove Element from Array by Value Example
- How to Remove Last Element from Array in PHP?
- PHP Multidimensional Array Search By Value Example
- How to Remove undefined Value from Array in JQuery?
- How to Get Maximum Key Value of Array in PHP?
- How to Remove Empty Values from Array in PHP?
- How to Add Prefix in Each Key of PHP Array?
- How to Get Minimum Key Value of Array in PHP?
- How to Remove Null Values from Array in PHP?