SarkariResultess QA Bank

Answer & Explanation

4 Answers
Verified

length($text)

length($text)
Additional Explanation
यह विकल्प सही Core PHP solution नहीं है।
Verified

$text.length()

$text.length()
Additional Explanation
यह विकल्प सही Core PHP solution नहीं है।
Verified Correct Answer

strlen($text)

strlen($text)
Additional Explanation
strlen() string की byte length देता है। पहले exact error message, line number और input value check करें।
Verified

str_length_only($text)

str_length_only($text)
Additional Explanation
यह विकल्प सही Core PHP solution नहीं है।