Answers for "remove first or last from array php"

PHP
2

php remove first and last char

<?php

$string = "hello world";

// create a substring starting 1 character from
// the beginning and ending 1 character from the end
$trimmed = substr($string, 1, -1);

echo $trimmed; // prints "ello worl"
Posted by: Guest on May-30-2021
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 "remove first or last from array php"

Browse Popular Code Answers by Language