Computer >> 컴퓨터 >  >> 프로그램 작성 >> PHP

PHP에서 문자열의 첫 번째 문자를 제거하는 방법은 무엇입니까?


PHP에서 문자열의 첫 번째 문자를 제거하는 코드는 다음과 같습니다-

예시

<?php
   $str = "Test";
   echo "Before removing the first character = ".$str;
   $res = substr($str, 1);
   echo "\nAfter removing the first character = ".$res;
?>

출력

이것은 다음과 같은 출력을 생성합니다 -

Before removing the first character = Test
After removing the first character = est

예시

이제 다른 예를 살펴보겠습니다.

<?php
   $str = "Demo";
   echo "Before removing the first character = ".$str;
   $res = ltrim($str, 'D');
   echo "\nAfter removing the first character = ".$res;
?>

출력

이것은 다음과 같은 출력을 생성합니다-

Before removing the first character = Demo 
After removing the first character = emo