mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-10 03:01:01 +00:00
8 lines
115 B
PHP
8 lines
115 B
PHP
<?php
|
|
$arr = ['a' => 1, 'b' => 1, 'c' => 2];
|
|
$trn = array_flip($arr);
|
|
|
|
echo '<pre>';
|
|
print_r($trn);
|
|
echo '</pre>';
|