“Получите последний символ String PHP” Ответ

Получите последний символ String PHP

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

Получите последнее слово от String php

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

Получите последний символ строки в php

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

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

Получите последний символ строки в php

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

Получите последний символ строки в 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

Получите последний символ строки в 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

Ответы похожие на “Получите последний символ String PHP”

Вопросы похожие на “Получите последний символ String PHP”

Больше похожих ответов на “Получите последний символ String PHP” по PHP

Смотреть популярные ответы по языку

Смотреть другие языки программирования