php remove the first value in a string code example
Example 1: php pop off the first character of string
$str = substr($str, 1);
Example 2: remove first element in array php
$arr = [1,2,3,4];
array_shift($arr);
print_r($arr); // [2,3,4]
$str = substr($str, 1);
$arr = [1,2,3,4];
array_shift($arr);
print_r($arr); // [2,3,4]