mirror of
https://github.com/php-win-ext/phpy.git
synced 2026-03-24 08:52:08 +01:00
6 lines
125 B
PHP
6 lines
125 B
PHP
<?php
|
|
$list = ["hello", "world", 2024];
|
|
$map = ['hello' => 'swoole', 'day' => date('Y-m-d'), 'data' => $list];
|
|
|
|
return $map;
|