PHPで文字数と数字の数を数える方法 文字列の長さを数える方法:$str = "Hello, World!"; $length = strlen($str); echo "文字列の長さ: " . $length;>>More