The following tutorial column ofthinkphp frameworkwill introduce to you the method of running thinkphp6 swoole in Windows 10. I hope it will be helpful to friends in need!
#Prerequisite: windows10 has docker installed
The outline is as follows
Windows10 installation docker
Download swoole’s docker image
Configure the docker running command
Configure the swoole configuration file of thinkphp
Run
Start execution now
Windows10 installation docker
The tutorial is this, it is not difficult
Download the docker image of swoole
Swoole is not used here Official image, because the official image requires a lot of configuration, it is convenient to use this image directly. This installs composer and swoole
docker pull twosee/swoole-coroutine
Configure docker running command
About the running port: This can be set by yourself, but it must correspond to the swoole listening port of TP. I first set the 8888 port here.
The directory mapping corresponds to /var/www in the container. This It is the www directory of the container, and C:\UPUPW_NP7.2_64\htdocs is just the code file path where I put tp6. This can be changed to your own
Configure thinkphp's swoole configuration file
The configuration file is app/config/swoole.php
Run the docker container
Conclusion
Regarding why docker containers don’t use official image files, official image files are difficult to configure, so they use configured containers instead of official ones
swoole cannot be used on windows, it can only be used through docker or other methods. I prefer docker and I will not give other tutorials
The above is the detailed content of How to run thinkphp6+swoole in windows10. For more information, please follow other related articles on the PHP Chinese website!