Answers for "php remove last lines from file"

PHP
1

php remove last newline from string

$string = rtrim($string_to_remove);
Posted by: Guest on June-24-2021
0

remove last 3 character from string php

$str = removeLast3char($str);
function removeLast3char($string){
    return trim(substr($string, 0, -3));
}
Posted by: Guest on March-16-2022

Code answers related to "php remove last lines from file"

Browse Popular Code Answers by Language