SarkariResultess QA Bank

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

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

Answer & Explanation

4 Answers
Verified

$text.trim()

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

clean_string($text)

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

trim($text)

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

strip_spaces($text)

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