mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-03 16:43:03 +00:00
9 lines
145 B
PHP
9 lines
145 B
PHP
<?php
|
|
$arr = ['PHP', 'Python', 'Ruby', 'JavaScript'];
|
|
|
|
sort($arr);
|
|
|
|
echo '<pre>';
|
|
print_r($arr); // JavaScript, PHP, Python, Ruby
|
|
echo '</pre>';
|