Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/javakam/phpshare-tinkphp8
https://github.com/javakam/phpshare-tinkphp8
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/javakam/phpshare-tinkphp8
- Owner: javakam
- License: other
- Created: 2023-12-13T08:47:49.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-01-22T07:21:17.000Z (11 months ago)
- Last Synced: 2024-01-22T09:19:28.041Z (11 months ago)
- Language: PHP
- Size: 1.48 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
ThinkPHP 8.0 Study
===============> ThinkPHP8.0的运行环境要求PHP8.0.0+
> 开发手册: https://doc.thinkphp.cn
## 配置
`php.ini` 必需的扩展
~~~properties
extension_dir="ext"
extension=php_zip
extension=php_pdo_mysql
extension=php_fileinfo
extension=php_curl
extension=openssl
~~~## 安装
~~~
composer create-project topthink/think tp
~~~启动服务
~~~
php think run
~~~然后就在浏览器中访问 `http://localhost:8000`
更新框架使用 `composer update topthink/framework`
## 开发
- `php think run` 环境下,访问 `http://localhost:8000` 进行开发调试
- `phpstudy` 环境下,访问 `http://自定义域名` 进行开发调试
✨这俩环境可以同时运行。