PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
Copy Clear
Copy Format Clear
<?php // Step 1: Define the original associative array $originalArray = [ 'key1' => 'value1', 'key2' => 'value2', 'key3' => 'value3', 'key4' => 'value4' ]; // Step 2: Extract values from the array $valuesArray = array_values($originalArray); // Step 3: Output the values array print_r($valuesArray); ?>
Show:  
Copy Clear