SarkariResultess QA Bank

Answer & Explanation

4 Answers
Verified Correct Answer

User::find();

User::find();
Additional Explanation
:: static/class-level member access करता है। पहले exact error message, line number और input value check करें।
Verified

User->find();

User->find();
Additional Explanation
यह विकल्प सही Core PHP solution नहीं है।
Verified

static(User).find();

static(User).find();
Additional Explanation
यह विकल्प सही Core PHP solution नहीं है।
Verified

$User.find();

$User.find();
Additional Explanation
यह विकल्प सही Core PHP solution नहीं है।