Answers for "get the last two characters in a string php"

PHP
1

only display part of string php

substr('abcdef', 1);     // bcdef
substr('abcdef', 1, 3);  // bcd
substr('abcdef', 0, 8);  // abcdef
substr('abcdef', -1, 1); // f
Posted by: Guest on August-21-2020

Code answers related to "get the last two characters in a string php"

Browse Popular Code Answers by Language