Strings Php

$text = "a, o, p";
$fruitarray = preg_split( "/, | and /", $text );
print "
\n";
print_r( $fruitarray );
print "
\n";
?>