“PHP Substr remove os últimos 4 caracteres” Respostas de código

PHP Remova o último caractere em string

//Remove the last character using substr
$string = substr($string, 0, -1);
Kasmin Nicko

PHP Substr remove os últimos 4 caracteres

echo substr($string, 0, -3);
Helpful Hippopotamus

Remova o último caractere de uma string no PHP

phpCopy<?php
$mystring = "This is a PHP program.";
echo("This is the string before removal: $mystring\n");
$newstring = rtrim($mystring, ". ");
echo("This is the string after removal: $newstring");
?>
CodeGuruDev

Respostas semelhantes a “PHP Substr remove os últimos 4 caracteres”

Perguntas semelhantes a “PHP Substr remove os últimos 4 caracteres”

Mais respostas relacionadas para “PHP Substr remove os últimos 4 caracteres” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código