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