Horje
php remove last character in string Code Example
php remove last character in string
//Remove the last character using substr
$string = substr($string, 0, -1);
remove last letter php
<?php
echo substr('abcdef',0, -1);     // abcde
?>
php remove last character from string if comma
$string = rtrim($string, ',');
remove last character from string in php
$arrStr = 'Str1, Str2, str3, ';
echo rtrim($arrStr, ", "); //Str1, Str2, str3
echo substr_replace($arrStr, "", -2); //Str1, Str2, str3
echo substr($arrStr, 0, -2); // Str1, Str2, str3
Remove the Last Character From a String in PHP
phpCopy<?php
$mystring = "This is a PHP program.";
echo substr($mystring, 0, -1);
?>
php string remove last character
echo substr('a,b,c,d,e,', 0, -1);
# => 'a,b,c,d,e'




Php

Related
php refresh Code Example php refresh Code Example
laravel version check Code Example laravel version check Code Example
check laravel version Code Example check laravel version Code Example
laravel generate key Code Example laravel generate key Code Example
how to check laravel version Code Example how to check laravel version Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
22