mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-06 11:10:42 +00:00
8 lines
122 B
PHP
8 lines
122 B
PHP
<?php
|
|
$arr = ['size' => 'XL', 'color' => 'gold'];
|
|
$num = array_values($arr);
|
|
|
|
echo '<pre>';
|
|
print_r($num);
|
|
echo '</pre>';
|