substr関数の使用例

z20250812002_06.phpをインクルードしてます
$string = 'abcdefghijk';
print substr($string, 1, 5);
⇩このコードを実行した結果
bcdef

 

終了