我在windows (wamp64)上安装cakephp3应用程序时遇到了一些问题。指示显示
"On Windows systems, you can simply download the release ZIP file, expand
it using Windows Explorer, and copy the needed script file(s) out of
the contained phplot-* folder into place." (Q1)在wamp64上“就位”到底是什么意思?
( q2)在cakephp3项目中访问phplot (我找不到说明)?
http://phplot.sourceforge.net/phplotdocs/install-install.html
发布于 2018-07-09 07:35:26
你也可以用作曲家作曲。在项目目录中执行此命令来安装它。
composer require davefx/phplot或者在需要部分的项目composer.json文件中添加这一行。
"davefx/phplot": "*"和执行composer update命令。
或者,也可以在供应商目录中解压phplot文件,然后使用下面的命令将其包含在控制器中。
require_once(ROOT . 'vendor' . DS . 'phplot-6.2.0' . DS . 'phplot.php');https://stackoverflow.com/questions/51239275
复制相似问题