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