Answers for "display only 10 characters in php"

PHP
15

php get first 5 characters of string

$result = substr("Hello How are you", 0, 5); //first 5 chars "Hello"
Posted by: Guest on February-12-2020
2

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
1

print only some characters of a string in php

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

how to echo only certain character number in php

$temp = substr($temp, 0, 5);
echo "$temp...";
Posted by: Guest on October-15-2021

Code answers related to "display only 10 characters in php"

Browse Popular Code Answers by Language