SarkariResultess QA Bank

PHP string uppercase कैसे करते हैं? production project में safely कैसे use करें?

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

Answer & Explanation

4 Answers
Verified

upper($text)

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

string_upper_php($text)

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

strtoupper($text)

strtoupper($text)
Additional Explanation
strtoupper() uppercase conversion करता है। Production में logging और safe error handling रखें।
Verified

$text.upper()

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