php字符串按指定字符分割


$str="我|是|中|国|人|";

$var=explode("|",$str);

$i=0;

while($var[$i]){

echo $i."
";

$i+=1;

}

?>

你可能感兴趣的:(php字符串按指定字符分割)