php explode() fungsi sintaks
Fungsi: Pecahkan rentetan kepada tatasusunan
Sintaks: meletup(pemisah, rentetan, had)
Parameter:
pemisah | |
string | |
had |
🎜 Penerangan :🎜Break rentetan ke dalam tatasusunan. Parameter "pemisah" tidak boleh menjadi rentetan kosong. Fungsi ini selamat binari. 🎜
php explode() fungsi contoh
<?php $str = "Hello world. I'm study in php.cn!"; print_r (explode(".",$str)); ?>e
run Instance »
Klik butang" Run Instance "untuk melihat Instance Online Output:
Array ( [0] => Hello world [1] => I'm study in php [2] => cn! )e
<?php $arr = "Learning PHP is a good choice"; print_r(explode(" ", $arr)); ?>e
Array ( [0] => Learning [1] => PHP [2] => is [3] => a [4] => good [5] => choice )