“Obtenga el último carácter de String PHP” Código de respuesta

Obtenga el último carácter de String PHP

substr("testers", -1); // returns "s"
Nate

Obtenga la última palabra de String PHP

function getLastWord($string)
    {
        $string = explode(' ', $string);
        $last_word = array_pop($string);
        return $last_word;
    }
Condemned Cobra

Obtenga el último carácter de una cadena en PHP

phpCopy<?php  
$string = "This is a string";

$lastChar = $string[-1];
echo "The last char of the string is $lastChar.";
?>
CodeGuruDev

Obtenga el último carácter de una cadena en PHP

phpCopy<?php  
$string = 'This is a string';
$lastChar = substr($string, -1);
echo "The last char of the string is $lastChar.";
?>
CodeGuruDev

Obtenga el último carácter de una cadena en PHP

phpCopy<?php  
$string = "This is a string";
$lengthOfString = strlen($string);
$lastCharPosition = $lengthOfString-1;
$lastChar = $string[$lastCharPosition];
echo "The last char of the string is $lastChar.";
?>
CodeGuruDev

Obtenga el último carácter de una cadena en PHP

phpCopy<?php 
$string = "This is a string";
$lastCharPosition = strlen($string) - 1;  
for ($x = $lastCharPosition; $x < strlen($string); $x++) {
    $newString = $string[$x]; 
} 
echo "The last char of the string is $newString.";
?> 
CodeGuruDev

Respuestas similares a “Obtenga el último carácter de String PHP”

Preguntas similares a “Obtenga el último carácter de String PHP”

Más respuestas relacionadas con “Obtenga el último carácter de String PHP” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código