get first character string php code example
Example 1: php get first 5 characters of string
$result = substr("Hello How are you", 0, 5);
Example 2: take last four digits php
$newstring = substr($dynamicstring, -7);
Example 3: php get first character of string
$firstStringCharacter = substr("hello", 0, 1);
Example 4: php nth characters from end of string
$rest = substr("abcdef", -3, 1);
Example 5: first name of string php
$words = explode(" ", $string);
$firstname = $words[0];
$lastname = $words[1];
$third_word = $words[2];
Example 6: substr
const str = 'substr';
console.log(str.substr(1, 2));
console.log(str.substr(1));
console.log(str.substr(-3, 2));
console.log(str.substr(-3));