Communities for your favorite technologies. Explore all Collectives
Stack Overflow for Teams is now called Stack Internal. Bring the best of human thought and AI automation together at your work.
Bring the best of human thought and AI automation together at your work. Learn more
Find centralized, trusted content and collaborate around the technologies you use most.
Stack Internal
Knowledge at work
Bring the best of human thought and AI automation together at your work.
I have one string variable as
$p_list="1,2,3,4";
i want to convert it to an array such as
$a[0]='1'; $a[1]='2'; $a[2]='3'; $a[3]='4';
how to do this in php?
Use explode.
$p_list = "1,2,3,4"; $array = explode(',', $p_list);
See Codepad.
Add a comment
Try explode $a=explode(",","1,2,3,4");
$a=explode(",","1,2,3,4");
Try this:
In PHP, explode function will convert string to array, If string has certain pattern. <?php $p_list = "1,2,3,4"; $noArr = explode(",", $p_list); var_dump($noArr); ?> You will get array with values stores in it.
Required, but never shown
By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.
Start asking to get answers
Find the answer to your question by asking.
Explore related questions
See similar questions with these tags.