“string remove os últimos dois caracteres php” 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 da string em 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
@CodeGrepperManu

string remove os últimos dois caracteres php

echo substr($string, 0, -2);
Akash

Respostas semelhantes a “string remove os últimos dois caracteres php”

Perguntas semelhantes a “string remove os últimos dois caracteres php”

Mais respostas relacionadas para “string remove os últimos dois caracteres php” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código