Answers for "php substr remove last 2 characters"

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
4

remove last comma from string php

rtrim($my_string, ',');
Posted by: Guest on November-12-2020

Code answers related to "php substr remove last 2 characters"

Browse Popular Code Answers by Language