mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-01 16:49:53 +00:00
10 lines
180 B
PHP
10 lines
180 B
PHP
<?php
|
|
$arr = [
|
|
'employee' => 'Иван Иванов',
|
|
'phones' => [
|
|
'916 153 2854',
|
|
'916 643 8420'
|
|
]
|
|
];
|
|
echo json_encode($arr, JSON_UNESCAPED_UNICODE);
|