「PHP」chunk_splitで文字列を指定した長さに分割する
構文
chunk_split(文字列, 長さ)
文字列をより小さな部分に分割します
使用例
<?php $str = "studyskillinarkgame"; print_r('<pre>'); $result = chunk_split($str, 5); print_r($result); print_r('</pre>'); ?>
実行結果
study skill inark game
Coding Changes the World
構文
chunk_split(文字列, 長さ)
文字列をより小さな部分に分割します
使用例
<?php $str = "studyskillinarkgame"; print_r('<pre>'); $result = chunk_split($str, 5); print_r($result); print_r('</pre>'); ?>
実行結果
study skill inark game