php get last four characters of string code example
Example 1: get last character of string php
substr("testers", -1);
Example 2: take last four digits php
$newstring = substr($dynamicstring, -7);
Example 3: take 10 character from string using php
$return_string = substr("Hi i am returning first 10 characters.", 0, 10);
Output:
"Hi i am re"
Example 4: 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.";
?>