「php」文字列の一部を取得するサンプル

構文
substr ( string $string , int $start [, int $length ] ) : string

phpコード

$cft = “this is a tesr “;

// 指定の位置から1文字取得
print substr($cft,0,1);

// 最初の文字から2文字取得
print substr($cft,0,2);// b

PHP

Posted by arkgame