“Remova a última letra 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

Remova a última letra php

<?php
echo substr('abcdef',0, -1);     // abcde
?>
Vast Vulture

PHP Remova o primeiro e o último char

<?php

$string = "hello world";

// create a substring starting 1 character from
// the beginning and ending 1 character from the end
$trimmed = substr($string, 1, -1);

echo $trimmed; // prints "ello worl"
DenverCoder1

PHP Remova o último caractere da string

$hell = substr('hello', 0, -1);
Grepper

PHP Substr remove os últimos 4 caracteres

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

PHP Remova as últimas 3 letras da string

echo substr($string, 0, -3);
Jolly Jackal

Respostas semelhantes a “Remova a última letra php”

Perguntas semelhantes a “Remova a última letra php”

Mais respostas relacionadas para “Remova a última letra php” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código