<?php
//pi1.cc 抽奖
function Json(array $arr = [], int $code = 200, string $msg = 'ok'): bool|string
{
$data = ['code' => $code, 'msg' => $msg, 'data' => $arr];
return json_encode($data, JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES);
}
$id[] = 'xxxxxx';
$id[] = 'xxxxxx';
$id[] = 'xxxxxx';
$id[] = 'xxxxxx';
// 循环100次
for ($i = 0; $i < 100; $i++) {
$data = [$i => $id[array_rand($id)], 'time' => time()]; //取随机数组
}
//取最后一个
echo Json([$data]);