mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-06 11:10:42 +00:00
8 lines
128 B
PHP
8 lines
128 B
PHP
<?php
|
|
$arr = ['красный', 'синий'];
|
|
array_push($arr, 'зеленый');
|
|
|
|
echo '<pre>';
|
|
print_r($arr);
|
|
echo '</pre>';
|