php last character of string code example
Example 1: get last character of string php
substr("testers", -1);
Example 2: substr() php
<?php
echo substr('abcdef', 1);
echo substr('abcdef', 1, 3);
echo substr('abcdef', 0, 4);
echo substr('abcdef', 0, 8);
echo substr('abcdef', -1, 1);
$string = 'abcdef';
echo $string[0];
echo $string[3];
echo $string[strlen($string)-1];
?>
//substr() function returns certain bits of a string
Example 3: get last word from string php
function getLastWord($string)
{
$string = explode(' ', $string);
$last_word = array_pop($string);
return $last_word;
}
Example 4: php last of string till /
$string = 'Hello World Again';
$string = explode(' ', $string);
array_pop($string);
$string = implode(' ', $string);
Example 5: Get the Last Character of a String in 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.";
?>
Example 6: Get the Last Character of a String in PHP
phpCopy<?php
$string = "This is a string";
$lastChar = $string[-1];
echo "The last char of the string is $lastChar.";
?>