首页 > php安装pear和phpunit

php安装pear和phpunit

php安装pear和phpunit

http://hi.baidu.com/zjutxujie/item/7b08761f922df7476926bb2c

安装pear

  1. 下载go-pear.phar,放到phproot/pear目录下,地址http://pear.php.net/go-pear.phar。

  2. 管理员身份运行cmd,打开phproot,运行php -d phar.require_hash=0 PEAR/go-pear.phar。

  3. 选择local->yes->Enter->Y。php.ini中会自动添加include_path=".;phprootpear"。

  4. 运行pear list显示package列表,检查pear是否安装成功。

安装phpunit

  1. 打开phproot,运行pear channel-discover pear.phpunit.de。

  2. 运行pear install phpunit/PHPUnit,如果显示No releases available for package "pear.phpunit.de/PHPUnit",运行pear clear-cache。

  3. 如果显示phpunit/PHPUnit requires package "channel://pear.symfony-project.com/YAML",运行pear channel-discover pear.symfony-project.com。

  4. 如果显示Did not download optional dependencies: phpunit/PHP_Invoker,运行pear install --alldeps --force phpunit/PHPUnit,会显示warning: phpunit/PHP_Invoker requires PHP extension "pcntl"。

  5. 运行phpunit -version检查phpunit是否安装成功。

安装Selenium

  1. 在phproot下运行pear install phpunit/PHPUnit_Selenium,会显示phpunit/PHPUnit_Selenium requires PHP extension "curl"。

  2. 将phproot下的三个文件php_curl.dll(在phproot/ext下),libeay32.dll,ssleay32.dll复制到system32下,将php.ini中的;extension=php_curl.dll中的分号去掉。

  3. 重新运行pear install phpunit/PHPUnit_Selenium,显示安装成功

转载于:https://www.cnblogs.com/fastparse/p/3491906.html

更多相关: