Answers for "start and end of substr in 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
1

print only some characters of a string in php

substr(string,start,length)
Posted by: Guest on July-11-2020

Code answers related to "start and end of substr in php"

Browse Popular Code Answers by Language