Posts

Showing posts from December, 2024

nt

nt all pract
os all pract
https://drive.google.com/file/d/19X9yURb9n8QmwdoOlgzCSvIzeQMdJ-xN/view?usp=sharing

arro

  <?php // Indexed Array $indexedArray = array ( 5 , 3 , 8 , 1 , 9 ); echo "Original Indexed Array: " ; print_r ( $indexedArray ); echo "<br>" ; // Sorting Indexed Array sort ( $indexedArray ); // Sort in ascending order echo " \n\n Indexed Array after sort(): " ; print_r ( $indexedArray ); echo "<br>" ; rsort ( $indexedArray ); // Sort in descending order echo " \n\n Indexed Array after rsort(): " ; print_r ( $indexedArray ); echo "<br>" ; // Associative Array $associativeArray = array (     "John" => 25 ,     "Alice" => 30 ,     "Bob" => 20 ,     "Diana" => 35 ); echo " \n\n Original Associative Array: " ; print_r ( $associativeArray ); // Sorting Associative Array asort ( $associativeArray ); // Sort by values in ascending order, preserving keys echo " \n\n Associative Array after asort(): " ; print_r ( $associativeArr...