mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-06 11:10:42 +00:00
15 lines
253 B
PHP
15 lines
253 B
PHP
<?php
|
|
$extensions = [
|
|
'php' => 'PHP',
|
|
'py' => 'Python',
|
|
'rb' => 'Ruby',
|
|
'js' => 'JavaScript'
|
|
];
|
|
|
|
function print_array(string $item, string $key) : void
|
|
{
|
|
echo "$key: $item< /br>" . PHP_EOL;
|
|
}
|
|
|
|
array_walk($extensions, 'print_array');
|