Home / Questions / Other PHP file content read करने का function क्या है? को secure तरीके से कैसे implement करें? Other 0 Views Verified PHP file content read करने का function क्या है? को secure तरीके से कैसे implement करें? सही विकल्प चुनें और code/solution को समझें। #php #core php #php programming #php tutorial #php error #php solution #backend #developer Sarkari Result QA Bank Editorially reviewed exam information Share
Verified read_file('data.txt') read_file('data.txt') Additional Explanation यह विकल्प सही Core PHP solution नहीं है।
Verified get_file_text('data.txt') get_file_text('data.txt') Additional Explanation यह विकल्प सही Core PHP solution नहीं है।
Verified Correct Answer file_get_contents('data.txt'); file_get_contents('data.txt'); Additional Explanation file_get_contents() file content पढ़ता है। User input को trust न करें; validation, escaping और prepared statements context के अनुसार उपयोग करें।
Verified file.read('data.txt') file.read('data.txt') Additional Explanation यह विकल्प सही Core PHP solution नहीं है।