今天在用Thinkphp框架做项目的时候,验证码一直出不来,打开调试模式报错显示,找到如下解决方案:
1.shell中运行php -v,这个是mac系统自带版本,缺少验证码展示的必要库。
2.https://php-osx.liip.ch/下载指定版本的php,该安装包内集成了必要库。我使用的是7.3版本
curl -s https://php-osx.liip.ch/install.sh | bash -s 7.3
按照提示输入root密码,等待下载安装完毕即可。
3.更新默认PHP命令路径,在~/.profile文件中(如不存在需要新建),插入:
export PATH=/usr/local/php5/bin:/usr/local/php5/sbin:$PATH
4.执行source ~/.profile,再执行php -v,如果版本发生了变化即安装成功。
⇒ php -v PHP 7.3.8 (cli) (built: Aug 11 2019 20:50:16) ( NTS ) Copyright (c) 1997-2018 The PHP Group Zend Engine v3.3.8, Copyright (c) 1998-2018 Zend Technologies with Zend OPcache v7.3.8, Copyright (c) 1999-2018, by Zend Technologies with Xdebug v2.7.2, Copyright (c) 2002-2019, by Derick Rethans