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

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

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

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

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

phpCopysubstr($stringName, $startingPosition, $lengthOfSubstring);
CodeGuruDev

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

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

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

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

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