Answers for "remove trailing symbols in php"

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
-1

trim | from right in php

$DATA=trim("abc|1|test|","|");
Posted by: Guest on December-18-2020

Code answers related to "remove trailing symbols in php"

Browse Popular Code Answers by Language