Câu 23: 200-550: Zend Certified PHP Engineer
Which of the following code snippets DO NOT write the exact content of the file "source.txt" to "target.txt"? (Choose 2)
Nội dung câu hỏi
Which of the following code snippets DO NOT write the exact content of the file "source.txt" to "target.txt"? (Choose 2)
Các lựa chọn
Đáp án được giữ gọn theo nhãn A, B, C, D trong phần bình chọn tương tác.
- A. file_put_contents("target.txt", fopen("source.txt", "r"));
- B. file_put_contents("target.txt", readfile("source.txt")); — đáp án hiện tại
- C. file_put_contents("target.txt", join(file("source.txt"), "\n")); — đáp án hiện tại
- D. file_put_contents("target.txt", file_get_contents("source.txt"));
- E. $handle = fopen("target.txt", "w+"); fwrite($handle, file_get_contents("source.txt")); fclose($handle);
Cộng đồng
0 bình luận công khai. Tên thành viên được ẩn một phần.
Chưa có bình luận. Mở giao diện tương tác để bắt đầu thảo luận.