SarkariResultess QA Bank

Composer autoload file का common path क्या है? इसका working code example क्या है?

Other 0 Views Verified
Composer autoload file का common path क्या है? इसका working code example क्या है? सही विकल्प चुनें और code/solution को समझें।
Sarkari Result QA Bank
Editorially reviewed exam information

Answer & Explanation

4 Answers
Verified

require '/composer/autoload.php';

require '/composer/autoload.php';
Additional Explanation
यह विकल्प सही Core PHP solution नहीं है।
Verified

autoload.php();

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

require __DIR__ . '/vendor/autoload.php';

require __DIR__ . '/vendor/autoload.php';
Additional Explanation
Composer generated autoloader सामान्यतः vendor/autoload.php में होता है।
Verified

include composer.php;

include composer.php;
Additional Explanation
यह विकल्प सही Core PHP solution नहीं है।