SarkariResultess QA Bank

Answer & Explanation

4 Answers
Verified

openfile('data.txt')

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

fopen_file('data.txt')

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

file.open('data.txt')

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

$handle = fopen('data.txt', 'r');

$handle = fopen('data.txt', 'r');
Additional Explanation
fopen() file/stream handle खोलता है। पहले exact error message, line number और input value check करें।