Basic PHP Programming Question:

How to split a string into array using php?

Tweet Share WhatsApp

Answer:

$myString = "My Name Is Muhammad Hussain";
$myArray = explode(' ', $myString);
print_r($myArray);

Output :
Array
(
[0] => My
[1] => Name
[2] => Is
[3] => Muhammad
[4] => Hussain
)

Download PHP PDF Read All 139 PHP Questions
Previous QuestionNext Question
How To Read the Entire File into a Single String?Table rename?