str_split() 是 PHP 的預定義函數。它用於將字符串轉換為數組。如果指定了分割長度,則數組將被分解為具有長度的塊。
如果分割長度小於 1,它將返回 FALSE。
用法:
str_split(string,length);
參數 | 描述 | 必需/可選 |
---|---|---|
String | 指定要拆分的字符串。 | Required |
Length | 指定每個數組元素的長度。 默認為:1 |
Optional |
例子1
<?php
$str="Hello PHP";
print_r(str_split($str));
?>
輸出:
Array ( [0] => H [1] => e [2] => l [3] => l [4] => o [5] => [6] => P [7] => H [8] => P )
例子2
<?php
$str="Hello PHP";
print_r(str_split($str,3));
?>
輸出:
Array ( [0] => Hel [1] => lo [2] => PHP )
參考:
http://php.net/manual/en/function.str-split.php相關用法
- PHP string str_shuffle()用法及代碼示例
- PHP string str_repeat()用法及代碼示例
- PHP string str_ireplace()用法及代碼示例
- PHP string str_rot13()用法及代碼示例
- PHP string str_pad()用法及代碼示例
- PHP string str_word_count()用法及代碼示例
- PHP string strcoll()用法及代碼示例
- PHP string strip_tags()用法及代碼示例
- PHP string strchr()用法及代碼示例
- PHP string strcasecmp()用法及代碼示例
- PHP string strcmp()用法及代碼示例
- PHP string sha1()用法及代碼示例
- PHP string setlocale()用法及代碼示例
- PHP string sha1_file()用法及代碼示例
- PHP string similar_text()用法及代碼示例
- PHP string rtrim()用法及代碼示例
- PHP string printf()用法及代碼示例
- PHP string ord()用法及代碼示例
- PHP string join()用法及代碼示例
注:本文由純淨天空篩選整理自 PHP string str_split() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。