Answers for "php get 5 to 10 characters of string"

PHP
3

take 10 character from string using php

$return_string = substr("Hi i am returning first 10 characters.", 0, 10);
Output:
"Hi i am re"
Posted by: Guest on August-18-2020

Code answers related to "php get 5 to 10 characters of string"

Browse Popular Code Answers by Language