SarkariResultess QA Bank

PHP class import/alias के लिए कौन सा keyword है? interview में कैसे explain करेंगे?

Other 0 Views Verified
PHP class import/alias के लिए कौन सा keyword है? interview में कैसे explain करेंगे? सही विकल्प चुनें और code/solution को समझें।
Sarkari Result QA Bank
Editorially reviewed exam information

Answer & Explanation

4 Answers
Verified

include class User;

include class User;
Additional Explanation
यह विकल्प सही Core PHP solution नहीं है।
Verified

require namespace User;

require namespace User;
Additional Explanation
यह विकल्प सही Core PHP solution नहीं है।
Verified Correct Answer

use App\Models\User;

use App\Models\User;
Additional Explanation
use imported name/reference define करता है।
Verified

import App\Models\User;

import App\Models\User;
Additional Explanation
यह विकल्प सही Core PHP solution नहीं है।