1

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?

anatol
7879 silver badges16 bronze badges
asked Dec 18, 2013 at 7:36

3 Answers 3

3

Use explode .

$p_list = "1,2,3,4";
$array = explode(',', $p_list);

See Codepad .

answered Dec 18, 2013 at 7:37

Comments

1

Try explode $a=explode(",","1,2,3,4");

answered Dec 18, 2013 at 7:39

Comments

0

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.
  • Thanks
answered Dec 18, 2013 at 10:36

Comments

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

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.

Ask question

Explore related questions

See similar questions with these tags.