3 Star 0 Fork 0

积木云项目/Git开发项目管理系统

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
IndexController.php 675 Bytes
一键复制 编辑 原始数据 按行查看 历史
楚羽幽 提交于 2025-11-14 04:03 +08:00 . feat: 初始化项目结构和基础配置
<?php
namespace app\controller;
use support\Request;
class IndexController
{
public function index(Request $request)
{
return <<<EOF
<style>
* {
padding: 0;
margin: 0;
}
iframe {
border: none;
overflow: scroll;
}
</style>
<iframe
src="https://www.workerman.net/wellcome"
width="100%"
height="100%"
allow="clipboard-write"
sandbox="allow-scripts allow-same-origin allow-popups"
></iframe>
EOF;
}
public function view(Request $request)
{
return view('index/view', ['name' => 'webman']);
}
public function json(Request $request)
{
return json(['code' => 0, 'msg' => 'ok']);
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/xbcode-project/gitProject.git
git@gitee.com:xbcode-project/gitProject.git
xbcode-project
gitProject
Git开发项目管理系统
main

搜索帮助