We're a place where coders share, stay up-to-date and grow their careers.
PHP:
function removeFirstAndLastLetter($text){ return substr($text, 1, -1); } echo removeFirstAndLastLetter("Oh no, I lost two letters"); // Outputs : h no, I lost two letter
PHP: