SarkariResultess QA Bank

PHP include कैसे करते हैं? में developers की common mistake क्या है?

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

Answer & Explanation

4 Answers
Verified

load_browser('header.php');

load_browser('header.php');
Additional Explanation
यह विकल्प सही Core PHP solution नहीं है।
Verified

require_file_only('header.php');

require_file_only('header.php');
Additional Explanation
यह विकल्प सही Core PHP solution नहीं है।
Verified

import_php_only('header.php');

import_php_only('header.php');
Additional Explanation
यह विकल्प सही Core PHP solution नहीं है।
Verified Correct Answer

include 'header.php';

include 'header.php';
Additional Explanation
include specified file को script में include करता है।