SarkariResultess QA Bank

PHP array sort करने का basic function क्या है? इसका working code example क्या है?

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

Answer & Explanation

4 Answers
Verified

array_sorting($items);

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

sort($items);

sort($items);
Additional Explanation
sort() values ascending order में sort करता है।
Verified

order($items);

order($items);
Additional Explanation
यह विकल्प सही Core PHP solution नहीं है।
Verified

$items.sort();

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