ThinkChat🤖让你学习和工作更高效,注册即送10W Token,即刻开启你的AI之旅 广告
##view真静态 ###*实现* * * * * * + 获取请求参数 >例www.example.com/index/test/name?user=root >匹配index/test/name + 获取正静态位置 >public/index/test/name + 判断过期时间,过期载入入口文件,以重新生成 ~~~ //实际写入时没有换行什么的 <?php if (time() > . (string) (time() + $expire) ) { require ...../bootstrap/app.php; exit; } ?>; ~~~