PHPで最後の4文字を削除する方法 substr関数を使用する方法: $string = "サンプルテキスト"; $newString = substr($string, 0, -4); echo $newString;>>More