SPECIFICAMENTE per la stringa di esempio dell'OP, poiché ogni sottostringa da abbinare è una singola parola, è possibile utilizzare str_word_count () .
Codice: ( Demo )
$str = ' red, green, blue ,orange ';
var_export(str_word_count($str,1)); // 1 means return all words in an indexed array
Produzione:
array (
0 => 'red',
1 => 'green',
2 => 'blue',
3 => 'orange',
)
Questo può anche essere adattato per sottostringhe oltre le lettere (e alcuni trattini e apostrofi - se leggi la stampa fine) aggiungendo i caratteri necessari alla maschera di caratteri / 3 ° parametro.
Codice: ( Demo )
$str = " , Number1 , 234, 0 ,4heaven's-sake , ";
var_export(str_word_count($str,1,'0..9'));
Produzione:
array (
0 => 'Number1',
1 => '234',
2 => '0',
3 => '4heaven\'s-sake',
)
Ancora una volta, sto trattando questa domanda molto strettamente a causa della stringa di esempio, ma questo fornirà lo stesso risultato desiderato:
Codice: ( Demo )
$str = ' red, green, blue ,orange ';
var_export(preg_match_all('/[^, ]+/',$str,$out)?$out[0]:'fail');