Answers for "array all element remove last character php"

PHP
27

php remove last character in string

//Remove the last character using substr
$string = substr($string, 0, -1);
Posted by: Guest on April-02-2020
0

remove all items of an array except the last 5 in php

$a5 = array_slice($arr, -5);
Posted by: Guest on August-16-2021

Code answers related to "array all element remove last character php"

Browse Popular Code Answers by Language