fork download
  1. <?php
  2. $s = '"Red", "Blue", "Orange", "Green"';
  3. $s = str_replace(array('"', ', '), array("", ","), $s); // Remove the spaces and double quotes
  4. $a = explode(",", $s);
  5. var_dump($a);
Success #stdin #stdout 0.02s 52472KB
stdin
Standard input is empty
stdout
array(4) {
  [0]=>
  string(3) "Red"
  [1]=>
  string(4) "Blue"
  [2]=>
  string(6) "Orange"
  [3]=>
  string(5) "Green"
}