{"id":14987266,"url":"https://github.com/codeigniter-chinese/codeigniter4-user-guide","last_synced_at":"2025-05-07T21:41:08.007Z","repository":{"id":48417099,"uuid":"101713997","full_name":"CodeIgniter-Chinese/codeigniter4-user-guide","owner":"CodeIgniter-Chinese","description":"CodeIgniter 4 Chinese User Guide - CodeIgniter 4 简体中文手册","archived":false,"fork":false,"pushed_at":"2024-02-04T03:14:02.000Z","size":495194,"stargazers_count":78,"open_issues_count":0,"forks_count":62,"subscribers_count":18,"default_branch":"master","last_synced_at":"2024-03-26T21:22:10.790Z","etag":null,"topics":["codeigniter","guidebook"],"latest_commit_sha":null,"homepage":"https://codeigniter-chinese.github.io/codeigniter4-user-guide/","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/CodeIgniter-Chinese.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-08-29T03:17:40.000Z","updated_at":"2024-05-30T06:22:03.023Z","dependencies_parsed_at":"2022-08-24T09:30:19.767Z","dependency_job_id":"6df36d0a-39b0-4135-99ef-b66475b0d517","html_url":"https://github.com/CodeIgniter-Chinese/codeigniter4-user-guide","commit_stats":null,"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodeIgniter-Chinese%2Fcodeigniter4-user-guide","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodeIgniter-Chinese%2Fcodeigniter4-user-guide/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodeIgniter-Chinese%2Fcodeigniter4-user-guide/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodeIgniter-Chinese%2Fcodeigniter4-user-guide/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CodeIgniter-Chinese","download_url":"https://codeload.github.com/CodeIgniter-Chinese/codeigniter4-user-guide/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252961372,"owners_count":21832184,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["codeigniter","guidebook"],"created_at":"2024-09-24T14:14:21.194Z","updated_at":"2025-05-07T21:41:07.981Z","avatar_url":"https://github.com/CodeIgniter-Chinese.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CodeIgniter 4 中文手册翻译项目\n\n[![Build Docs](https://github.com/CodeIgniter-Chinese/codeigniter4-user-guide/actions/workflows/build.yml/badge.svg)](https://github.com/CodeIgniter-Chinese/codeigniter4-user-guide/actions/workflows/build.yml) \u003c!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section --\u003e\n[![All Contributors](https://img.shields.io/badge/all_contributors-29-orange.svg?style=flat-square)](#contributors-)\n\u003c!-- ALL-CONTRIBUTORS-BADGE:END --\u003e\n\n## 翻译准则\n\n中文翻译请遵守\n[中文文案排版指北](http://mazhuang.org/wiki/chinese-copywriting-guidelines/)\n和 [文档翻译指南](translation-guide.md)\n\n[预览最新文档](https://codeigniter-chinese.github.io/codeigniter4-user-guide/)\n\n## 安装步骤\n\nCodeIgniter 的用户指南使用 Sphinx 软件进行管理，并可以生成各种不同的格式。所有页面都采用 [ReStructured Text](https://en.wikipedia.org/wiki/ReStructuredText) 格式书写，这种格式非常方便人们阅读。\n\n### 安装条件\n\n#### Python\n\nSphinx 需要 Python 3.5+ 版本，如果你正在运行 macOS 或 Linux，则可能已经安装了它。\n你可以在终端窗口中执行 `python` 或 `python3` 来确认。\n\n```bash\npython --version\nPython 2.7.17\n\npython3 --version\nPython 3.6.9\n\n# 对于使用 Python 启动器的 Windows\npy -3 --version\nPython 3.8.1\n```\n\n如果你的版本低于 3.5+，请从 [Python.org](https://www.python.org/downloads/) 安装最新的 3.x 版本。Linux 用户应该使用操作系统自带的包管理器来更新。\n\n#### pip\n\n现在你已经安装并运行了 Python 3.x，我们将安装 [pip](https://pip.pypa.io/en/stable/) (Python 包安装程序)。\n\n你可以使用 `pip` 或 `pip3` 检查是否已安装 pip。如你所见，pip 遵循与 Python 相同的命名约定。请注意，输出的末尾应该显示 `python 3.x`。\n\n```bash\npip --version\npip 9.0.1 from /usr/lib/python2.7/dist-packages (python 2.7)\n\npip3 --version\npip 9.0.1 from /usr/lib/python3/dist-packages (python 3.6)\n\n# 对于使用 Python 启动器的 Windows\npy -3 -m pip --version\npip 20.0.2 from C:\\Users\\\u003cusername\u003e\\AppData\\Local\\Programs\\Python\\Python38\\lib\\site-packages\\pip (python 3.8)\n```\n\n##### Linux\n\n[使用 Linux 包管理器安装 pip/setuptools/wheel](https://packaging.python.org/guides/installing-using-linux-tools/)\n\n##### 其他\n\n如果你使用从 [Python.org](https://www.python.org/downloads/) 下载的 Python 3.5+，则 pip 已经安装好了。\n\n### 安装\n\n现在我们需要安装 Sphinx 和它的依赖项。根据操作系统选择 `pip` 或 `pip3`。\n此步骤之后，你需要重启终端窗口，否则 Python 将找不到我们刚刚安装的所有应用程序。\n\n```bash\npip install -r requirements.txt\n\npip3 install -r requirements.txt\n\n# 对于使用 Python 启动器的 Windows\npy -3 -m pip install -r requirements.txt\n```\n\n是时候总结一下并生成文档了。\n\n```bash\nmake html\n```\n\n### 使用 Docker\n\n如果你喜欢使用 Docker 构建文档的话，可以这样：\n\n1. clone 代码库到本地，例如 `/my/ci4` 目录\n2. 在 `/my/ci4` 目录下执行 `docker build -t ci4 .`\n3. 在 `/my/ci4` 目录下执行 `docker run -t --rm -v /my/ci4:/ci ci4`\n\n执行完毕后，`/my/ci4/build/html` 目录就是生成的文档啦。\n\n### 编辑并创建文档\n\n所有的源文件都在 *source/* 目录下，在这里你可以添加新的文档或修改已有的文档。\n\n### 那么，HTML 文档在哪里？\n\n很显然，HTML 文档才是我们最关心的，因为这毕竟才是用户最终看到的。 由于对自动生成的文件进行版本控制没有意义，所以它们并不在版本控制之下。\n你如果想要预览 HTML 文档，你可以重新生成它们。生成 HTML 文档非常简单，\n首先进入你的用户指南目录，然后执行上面安装步骤中的最后一步:\n\n    make html\n\n你将会看到正在编译中的信息，编译成功后，生成的用户指南和图片都位于 *build/html/* 目录下。在 HTML\n第一次编译之后，后面将只会针对修改的文件进行重编译，这将大大的节约我们的时间。\n如果你想再重新全部编译一次，只需删除 *build* 目录然后编译即可。\n\n## 贡献者 ✨\n\n感谢这些可爱的童鞋为中文手册做出的卓越贡献。 ([emoji key](https://allcontributors.org/docs/en/emoji-key)):\n\n\u003c!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section --\u003e\n\u003c!-- prettier-ignore-start --\u003e\n\u003c!-- markdownlint-disable --\u003e\n\u003ctable\u003e\n  \u003ctr\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"http://alexfu.cc\"\u003e\u003cimg src=\"https://avatars3.githubusercontent.com/u/9924787?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eAlexander.Fu\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"#translation-FlyingWings\" title=\"Translation\"\u003e🌍\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"http://www.wazidw.com\"\u003e\u003cimg src=\"https://avatars0.githubusercontent.com/u/4579995?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003ewazidw\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"#translation-wazidw\" title=\"Translation\"\u003e🌍\u003c/a\u003e \u003ca href=\"#projectManagement-wazidw\" title=\"Project Management\"\u003e📆\u003c/a\u003e \u003ca href=\"https://github.com/CodeIgniter-Chinese/codeigniter4-user-guide/pulls?q=is%3Apr+reviewed-by%3Awazidw\" title=\"Reviewed Pull Requests\"\u003e👀\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/zhangxiaoshua\"\u003e\u003cimg src=\"https://avatars3.githubusercontent.com/u/31472394?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003ezhangxiaoshua\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"#translation-zhangxiaoshua\" title=\"Translation\"\u003e🌍\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://www.qichengzx.com\"\u003e\u003cimg src=\"https://avatars0.githubusercontent.com/u/1927478?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003exin zhao\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"#translation-qichengzx\" title=\"Translation\"\u003e🌍\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://www.minipudding.com\"\u003e\u003cimg src=\"https://avatars0.githubusercontent.com/u/11162253?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eicicle198514\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"#translation-icicle198514\" title=\"Translation\"\u003e🌍\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/calciferlh\"\u003e\u003cimg src=\"https://avatars0.githubusercontent.com/u/14966692?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eCalcifer\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"#translation-calciferlh\" title=\"Translation\"\u003e🌍\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/DuXuanXuan\"\u003e\u003cimg src=\"https://avatars1.githubusercontent.com/u/17022815?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eDuXuanXuan\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"#translation-DuXuanXuan\" title=\"Translation\"\u003e🌍\u003c/a\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"http://amberoracle.blog.163.com/\"\u003e\u003cimg src=\"https://avatars0.githubusercontent.com/u/9973560?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eamberhu\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"#translation-amberzizi\" title=\"Translation\"\u003e🌍\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/te-riper\"\u003e\u003cimg src=\"https://avatars3.githubusercontent.com/u/33308188?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003ete-riper\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"#translation-te-riper\" title=\"Translation\"\u003e🌍\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/tlingYX\"\u003e\u003cimg src=\"https://avatars3.githubusercontent.com/u/28684950?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003etlingYX\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"#translation-tlingYX\" title=\"Translation\"\u003e🌍\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.red\"\u003e\u003cimg src=\"https://avatars3.githubusercontent.com/u/12731778?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eJohn Wu\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"#translation-wuhan005\" title=\"Translation\"\u003e🌍\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/FirstPunch\"\u003e\u003cimg src=\"https://avatars0.githubusercontent.com/u/47411716?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eFirstPunch\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"#translation-FirstPunch\" title=\"Translation\"\u003e🌍\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/chengshao2014\"\u003e\u003cimg src=\"https://avatars2.githubusercontent.com/u/6170936?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003echengshao2014\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"#translation-chengshao2014\" title=\"Translation\"\u003e🌍\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/wuzheng40\"\u003e\u003cimg src=\"https://avatars2.githubusercontent.com/u/1391798?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eRyan Wu\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"#translation-wuzheng40\" title=\"Translation\"\u003e🌍\u003c/a\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/lsc77\"\u003e\u003cimg src=\"https://avatars2.githubusercontent.com/u/17445192?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003elsc77\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"#translation-lsc77\" title=\"Translation\"\u003e🌍\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/lockemgt\"\u003e\u003cimg src=\"https://avatars0.githubusercontent.com/u/50262134?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eLockeMGT\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"#translation-lockemgt\" title=\"Translation\"\u003e🌍\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://www.cnblogs.com/Andres/\"\u003e\u003cimg src=\"https://avatars2.githubusercontent.com/u/24663432?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eLi Wang\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"#translation-leven87\" title=\"Translation\"\u003e🌍\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/crazePhper\"\u003e\u003cimg src=\"https://avatars2.githubusercontent.com/u/21233129?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003e小叮当的肚兜\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"#translation-crazePhper\" title=\"Translation\"\u003e🌍\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/arcsinw\"\u003e\u003cimg src=\"https://avatars3.githubusercontent.com/u/10514065?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003earcsinw\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"#translation-arcsinw\" title=\"Translation\"\u003e🌍\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/Qnurye\"\u003e\u003cimg src=\"https://avatars0.githubusercontent.com/u/50016379?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eQnurye\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"#translation-Qnurye\" title=\"Translation\"\u003e🌍\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/JerryGai\"\u003e\u003cimg src=\"https://avatars2.githubusercontent.com/u/38777583?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eJerryGai\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"#translation-JerryGai\" title=\"Translation\"\u003e🌍\u003c/a\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://codeigniter.org.cn\"\u003e\u003cimg src=\"https://avatars1.githubusercontent.com/u/13709?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eHex\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"#translation-hex-ci\" title=\"Translation\"\u003e🌍\u003c/a\u003e \u003ca href=\"#maintenance-hex-ci\" title=\"Maintenance\"\u003e🚧\u003c/a\u003e \u003ca href=\"#projectManagement-hex-ci\" title=\"Project Management\"\u003e📆\u003c/a\u003e \u003ca href=\"https://github.com/CodeIgniter-Chinese/codeigniter4-user-guide/pulls?q=is%3Apr+reviewed-by%3Ahex-ci\" title=\"Reviewed Pull Requests\"\u003e👀\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/bangbangda\"\u003e\u003cimg src=\"https://avatars1.githubusercontent.com/u/13864407?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003e24Kdabaiyang\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"#translation-bangbangda\" title=\"Translation\"\u003e🌍\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/tianpanhaha\"\u003e\u003cimg src=\"https://avatars3.githubusercontent.com/u/8691684?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003etianpanhaha\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"#translation-tianpanhaha\" title=\"Translation\"\u003e🌍\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/visvoy\"\u003e\u003cimg src=\"https://avatars1.githubusercontent.com/u/376332?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003evisvoy\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"#translation-visvoy\" title=\"Translation\"\u003e🌍\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/yeye978151\"\u003e\u003cimg src=\"https://avatars1.githubusercontent.com/u/23291154?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003e张叶\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"#translation-yeye978151\" title=\"Translation\"\u003e🌍\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/binhaiit\"\u003e\u003cimg src=\"https://avatars0.githubusercontent.com/u/68095133?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003ebinhaiit\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"#translation-binhaiit\" title=\"Translation\"\u003e🌍\u003c/a\u003e\u003c/td\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://www.orz2.com\"\u003e\u003cimg src=\"https://avatars2.githubusercontent.com/u/9927289?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eKang Jing\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"#translation-Instrye\" title=\"Translation\"\u003e🌍\u003c/a\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/honwooh\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/46131621?v=4?s=100\" width=\"100px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003ehonwooh\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"#translation-honwooh\" title=\"Translation\"\u003e🌍\u003c/a\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n\u003c/table\u003e\n\n\u003c!-- markdownlint-restore --\u003e\n\u003c!-- prettier-ignore-end --\u003e\n\n\u003c!-- ALL-CONTRIBUTORS-LIST:END --\u003e\n\n本项目遵循 [all-contributors](https://github.com/all-contributors/all-contributors) 规范。欢迎任何形式的贡献！\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodeigniter-chinese%2Fcodeigniter4-user-guide","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodeigniter-chinese%2Fcodeigniter4-user-guide","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodeigniter-chinese%2Fcodeigniter4-user-guide/lists"}