strlen

ページ名:strlen
 strlen ( string $string ) : num
 
与えられた string の文字列としての長さを返します。
 
 
<?t
$c:=strlen('abcdefgh');        //$c に数値 8 が代入されます
?>