- /**
- * 「こんにちは、世界!」を変換します。 array('hello', 'world') へ
- * URL: http://bbs.it-home.org
- * 日付: 2013/2/17
- */
- function strsToArray($strs) {
- $result = array();
- $strs = str_replace(', ', ',', $strs);
- $strs = str_replace("n", ',', $strs); str_replace(' ', ', $strs);
- $array =explode(',', $strs);
- foreach ($array as $key => $value) {
- if ('' != ( $value = trim($value))) {
- $result[] = $value;
- }
- return $result;
- //test http://bbs.it-home.org
- $strs = 'コードは詩です!';
- var_dump(strsToArray($strs));
- ?>
-
-
- 興味がありそうな記事:
-
- PHPのスペースで区切られたテキストを配列に入れる例
-
phpで中国語の文字列を配列に分割する簡単な例
PHPで中国語と英語の文字列を分割するいくつかの方法
phpのsplit()文字列分割関数の応用例
PHP分割GBK中国語文字化けの解決策
PHPの文字列分割関数explodeの例
|