programming faqs interview questions tech technical educational freshers guide preparation interviews hr telephonic
try another color:
try another fontsize: 60% 70% 80% 90%
Programming FAQs

how to find length of a string in php

Average: 3 (1 vote)

using strlen function we can

using strlen function we can find out the length of the string

$str = "programmingfaqs";

$len = strlen($str);
echo $len // 15