Easy way to turn a CSV file into a parseable array. <?php $str="foo,bar,baz,bat"; $arr=explode(",",$str); // print_r($arr); ?>.
確定! 回上一頁