文字列を分割します
//explode関数を使用して文字列を配列に分割します
コードをコピーします コードは次のとおりです:
$source = "hello1,hello2,hello3 ,hello4,hello5";/ /文字列をカンマで区切る
$hello =explode(',',$source);
for($index=0;$index{
echo $hello[$index ];echo ""
}
?>
//split 関数は文字の分割を実行します
// 区切り文字はスラッシュ、ドット、または水平線です
コードをコピーします コードは次のとおりです:
$date = "04/30/1973"
list($month, $day, $year) = split ('[/. -]', $date);
echo "月: $month; 日: $day; 年: $year
n";
http://www.bkjia.com/PHPjc/730055.html