ThinkPHP6的安装参考官方安装文档,使用composer安装。
安装稳定版
composer create-project topthink/think tp6
安装到最后会报错
Fatal error: Namespace declaration statement has to be the very first statement or after any declare call in the script in /www/wwwroot/tp6/think on line 4
PHP Fatal error: Namespace declaration statement has to be the very first statement or after any declare call in the script in /www/wwwroot/tp6/think on line 4
开发版的也存在此问题,解决方法也很简单,编辑应用根目录下think
文件,把第一行删了即可,即这一行
#!/usr/bin/env php
这一行一般是用在shell中用的,告诉系统用哪个程序执行,既然明知是用php执行的,所以这一行完全没必要。
删完之后再运行php think run
,如果正常输出就表示安装成功了。