Answers for "remove x first character of a string php"

PHP
11

remove first letter php

<?php
echo substr('abcdef', 1);     // bcdef
?>
Posted by: Guest on June-03-2020

Code answers related to "remove x first character of a string php"

Browse Popular Code Answers by Language