SarkariResultess QA Bank

PHP string lowercase कैसे करते हैं? को secure तरीके से कैसे implement करें?

Other 0 Views Verified
PHP string lowercase कैसे करते हैं? को secure तरीके से कैसे implement करें? सही विकल्प चुनें और code/solution को समझें।
Sarkari Result QA Bank
Editorially reviewed exam information

Answer & Explanation

4 Answers
Verified Correct Answer

strtolower($text)

strtolower($text)
Additional Explanation
strtolower() lowercase conversion करता है। User input को trust न करें; validation, escaping और prepared statements context के अनुसार उपयोग करें।
Verified

lower($text)

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

$text.lower()

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

string_lower_php($text)

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