SarkariResultess QA Bank

PHP private property कैसे declare करते हैं? की PHP best practice क्या है?

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

Answer & Explanation

4 Answers
Verified Correct Answer

private string $name;

private string $name;
Additional Explanation
private member declaring class तक सीमित होता है।
Verified

var property string $name;

var property string $name;
Additional Explanation
यह विकल्प सही Core PHP solution नहीं है।
Verified

$name property private;

$name property private;
Additional Explanation
यह विकल्प सही Core PHP solution नहीं है।
Verified

property $name;

property $name;
Additional Explanation
यह विकल्प सही Core PHP solution नहीं है।