用pear来安装phpunit

安装pear 的命令如下:

$ wget http://pear.php.net/go-pear.phar

$ php go-pear.phar

pear 安装成功!

下面用 pear 来安装phpunit

pear channel-discover pear.phpunit.de

pear channel-discover components.ez.no

pear channel-discover pear.symfony-project.com

pear upgrade-all

pear install phpunit/PHPUnit

在安装的过程中可能会出现依赖包,按照提示信息进行安装。

如:yum install php-dom -y等

例子:a.php

<?php

class StackTest extends PHPUnit_Framework_TestCase

{

public function testPushAndPop()

{

$stack = array();

$this->assertEquals(0, count($stack));

array_push($stack, ‘foo‘);

$this->assertEquals(‘foo‘, $stack[count($stack)-1]);

$this->assertEquals(1, count($stack));

$this->assertEquals(‘foo‘, array_pop($stack));

$this->assertEquals(0, count($stack));

}

?>

phpunit a.php 看到OK,表示成功

基本过程结束

时间: 2024-10-11 23:49:19

用pear来安装phpunit的相关文章

linux centos6.5 php5.6 安装PHPUnit 5.2.9 (转)

转自:http://blog.csdn.net/shancunxiaoyazhi/article/details/50765293 操作系统版本:CentOS6.5 PHP版本:5.6 下载phpunit :https://phpunit.de/ 安装phpunit步骤: wget https://phar.phpunit.de/phpunit.phar chmod +x phpunit.phar sudo mv phpunit.phar /usr/local/bin/phpunit [sql]

ubuntu 安装 PHPUnit

sudo apt-get remove phpunit apt-get autoremove apt-get autoclean [email protected]:~# pear channel-discover pear.phpunit.de[email protected]:~# pear channel-discover pear.symfony-project.com[email protected]:~# pear channel-discover components.ez.no[

3分钟wamp中php安装 pear 然而并没有用 并没能借此安装phpunit 不得不借用了其他的方式安装phpunit

15:42 2015/11/233分钟wamp中php安装 pear环境介绍:windows10,wamp2.5(推荐博客的博主是win7,所以系统应该不是问题)注意:在过程中要输入一次 yes,不要只输入y(以前安装某些东西的时候要求输入 yes/no的时候输入y或n就可以,这一次我就输入y结果出错了2次才发现是这个问题)推荐很好的博客,过程很详细,其中切换的目录依据自己的php安装路径做调整: http://www.cnblogs.com/bugY/archive/2012/07/06/25

linux下安装phpunit

安装pear 的命令如下: $ wget http://pear.php.net/go-pear.phar $ php go-pear.phar 如果报出PHP Warning:  file_exists(): open_basedir restriction in effect. 问题是出现在了PHP.INI上面了 原因是php.ini里设置了     open_basedir = .:/tmp/ 注释了就可以了 pear 安装成功! 如果要全局安装 PHAR: $ wget https://

php and mysql pear的安装

http://www.cnblogs.com/bugY/archive/2012/07/06/2578972.html 什么是PEAR 来自百度百科:PEAR是PHP扩展与应用库(the PHP Extension and Application Repository)的缩写.它是一个PHP扩展及应用的一个代码仓库,简单地说,PEAR之于PHP就像是CPAN(Comprehensive Perl Archive Network)之于Perl. 由此可见PEAR是PHP代码的仓库,在这里可以找到很

Zend Franmework: 安装 PHPUnit

url: https://phpunit.de/manual/current/zh_cn/installation.html 需求 PHPUnit 5.1 需要 PHP 5.6,强烈推荐使用最新版本的 PHP. PHPUnit 需要使用 dom 和 json 扩展,它们通常是默认启用的. PHPUnit 还需要 pcre.reflection.spl 扩展.这些标准扩展默认启用,并且除非修改 PHP 的构建系统和 C 源代码,否则无法禁用它们. 代码覆盖率分析报告功能需要 Xdebug (2.2

安装phpunit

按照网上的提示,将go-pear.phar和phpunit.phar都放到php.exe所在的目录.但是以管理员身份运行时,输入命令php PEAR/go-pear.phar或php -d phar.require_hash=0 PEAR/go-pear.phar在我的win7下总是遇到这个问题: Could not open input file: PEAR/go-pear.phar; 这应该是命令的原因,注意对比这个出错时的命令和下面执行正确的命令对比.不过同时我也试了下面的办---打开wi

PHP - 使用 Pear 进行安装

安装: 首先运行到php根目录: 输入要安装的包文件名: 使用语法: pear install 要安装包的名称 回车确认: 如果没有其他意外,显示安装成功. 查看安装的包的信息: 语句: pear info 包的名称 php目录下的PEAR文件夹下,会出现HTTP文件: 卸载: 进入php目录,输入卸载命令: pear uninstall 要卸载的包的名称 回车确定,卸载成功: PEAR文件夹中,没有HTTP文件:

维基百科api的简单调用以及wiki 标记的转义(pear的安装以及使用)

WIKI的API格式:http://语言缩写.wikipedia.org/w/api.php?&action=query&titles=语言对应的文字&format=返回格式&prop=revisions&rvprop=content 我现在做一个中国的历史上的今天 获取XML数据(prop表示版本  具体参数请点击中文API 以及文档 查看 ) 则请求的URL为:http://zh.wikipedia.org/w/api.php?action=query&