Answers for "how to remove last characters from string in php till specific characte"

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
0

remove last character from string php

$newarraynama = rtrim($arraynama, ", ");
Posted by: Guest on April-24-2021

Code answers related to "how to remove last characters from string in php till specific characte"

Browse Popular Code Answers by Language