PHP 文字層インターセプト手法 /** * 文字列の最後の文字を削除する最も簡単な方法 */$str = "abcd";$newstr = substr($str, 0, -1); //abc