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

<?php

$str = "NAME WITH SPACES FIELD1 FIELD2 FIELD3 FIELD4";

preg_match("/(\S+)\s(\S+)\s(\S+)\s(\S+)$/", $str, $matches);

var_dump($matches);

/* array(5) {
  [0] => string(27) "FIELD1 FIELD2 FIELD3 FIELD4"
  [1] => string(6) "FIELD1"
  [2] => string(6) "FIELD2"
  [3] => string(6) "FIELD3"
  [4] => string(6) "FIELD4"
} */
DenverCoder1

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

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

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

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

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

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