Home > PHP Framework > ThinkPHP > How to run thinkphp6+swoole in windows10

How to run thinkphp6+swoole in windows10

藏色散人
Release: 2020-07-11 16:17:49
forward
4411 people have browsed it

The following tutorial column of thinkphp framework will introduce to you the method of running thinkphp6 swoole in Windows 10. I hope it will be helpful to friends in need!

How to run thinkphp6+swoole in windows10

#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
Copy after login
Configure docker running command

How to run thinkphp6+swoole in windows10

    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


How to run thinkphp6+swoole in windows10

How to run thinkphp6+swoole in windows10

Run the docker container

How to run thinkphp6+swoole in windows10

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!

Related labels:
source:csdn.net
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template