php 文字列の先頭を大文字に変換するサンプル

環境
PHP 8.1.2
Ubuntu 22.04.1 LTS

構文
$result = ucfirst(対象の文字列);
ucfirst()の引数に対象の文字列を指定します。
引数の文字列の先頭を大文字に変換した文字列を生成します。

使用例

<?php

$tt = "arkgame.com";

$result = ucfirst($tt);

echo $result;


?>

実行結果
Arkgame.com

PHP

Posted by arkgame