Answers for "select last two characters of string php"

PHP
10

get last character of string php

substr("testers", -1); // returns "s"
Posted by: Guest on March-05-2020
2

take 10 character from string using php

$return_string = substr("Hi i am returning first 10 characters.", 0, 10);
Output:
"Hi i am re"
Posted by: Guest on August-18-2020

Code answers related to "select last two characters of string php"

Browse Popular Code Answers by Language