SarkariResultess QA Bank

PHP file content read करने का function क्या है? में developers की common mistake क्या है?

Other 0 Views Verified
PHP file content read करने का function क्या है? में developers की common mistake क्या है? सही विकल्प चुनें और code/solution को समझें।
Sarkari Result QA Bank
Editorially reviewed exam information

Answer & Explanation

4 Answers
Verified

read_file('data.txt')

read_file('data.txt')
Additional Explanation
यह विकल्प सही Core PHP solution नहीं है।
Verified

file.read('data.txt')

file.read('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 पढ़ता है।