Answers for "remove last element in php string"

PHP
24

php remove last character in string

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

php remove last element array

$stack = array("yellow", "red", "green", "orange", "purple");
 
// delete the last element of an array
$removed = array_pop($stack);
print_r($stack);
Posted by: Guest on February-20-2020

Code answers related to "remove last element in php string"

Browse Popular Code Answers by Language