Answers for "php remove the first value in a string"

PHP
6

php pop off the first character of string

$str = substr($str, 1);
Posted by: Guest on September-10-2020
1

remove first element in array php

$arr = [1,2,3,4];
array_shift($arr);
print_r($arr); // [2,3,4]
Posted by: Guest on July-27-2020

Code answers related to "php remove the first value in a string"

Browse Popular Code Answers by Language