我正在尝试使用Homebrew更新Mac OS X计算机上的PHP,并收到以下输出:
*********:Library *********$ brew install php56
Error: No available formula for php56
==> Searching formulae...
==> Searching taps...
homebrew/php/php56-amqp homebrew/php/php56-phalcon
homebrew/php/php56-apcu homebrew/php/php56-pimple
在使用proc_open()运行命令的新服务器上,我遇到了问题。我创建了以下测试脚本:
$desc = array(
0 => array('pipe', 'r'), // we use to write data
1 => array('pipe', 'w'), // we use to read data
2 => array('pipe', 'w') // errors' log
);
$cmd = "exec php -v"
看起来PHP7.2现在在Ubuntu18.04上出现了,但是有两个版本: 7.2.3-1ubuntu1(base)和7.2.15-0ubuntu0.18.04.1(安全性)。
当我尝试运行apt安装php7.2-fpm时,我得到:
# apt install php7.2-fpm
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have
requ
我对Debian 10使用了Sury。不知怎么的,我注意到它正在尝试安装旧版本和新版本。他们有没有办法,我可以做些什么,这样,apt更新或apt升级,除了php 7.4之外,不会安装任何软件包吗?
The following NEW packages will be installed:
php5.6-igbinary php5.6-memcached php5.6-msgpack php5.6-redis php7.0-igbinary php7.0-memcached php7.0-msgpack php7.0-redis php7.1-igbinary php7.1-memc
我知道这个错误:
mona@pascal:~/computer_vision/Instagram-API/examples$ php PaginationExample.php
PHP Warning: include(/home/mona/computer_vision/Instagram-API/examples/../vendor/autoload.php): failed to open stream: No such file or directory in /home/mona/computer_vision/Instagram-API/examples/PaginationE
PHPunit正在工作,但是我得到了这个代码覆盖率错误,并且没有得到代码覆盖率报告。
有人知道怎么解决这个问题吗?
谢谢,
德米安。
demian@dimbo-TP:/var/www/z2d2/tests$ phpunit
PHPUnit 3.5.15 by Sebastian Bergmann.
...
Time: 1 second, Memory: 13.00Mb
OK (3 tests, 4 assertions)
Generating code coverage report, this may take a moment.PHP Fatal error: Class
我们正在运行UbuntuServer18.04.5。我刚从PHP7.2升级到7.4,因为Wordpress在抱怨。我听从这里的指示,一切顺利。现在,我想删除7.2,但是当我运行命令sudo apt purge '^php7.2*'时,不仅要执行7.4和7.2的正则表达式,还需要安装PHP8。我已经粘贴了下面的输出。在任何事情发生之前我就取消了。我做错了什么?
The following packages were automatically installed and are no longer required:
dbconfig-common dbconfig-mysql
我正在使用Ubuntu16.04.1,早在8月份就安装了php7,但是今天我尝试安装IMAP扩展,它不允许我安装。
root@ip-XXX-XXX-X-XXX:/etc# apt-get install php7.0-imap
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situati
我目前正试图获取基于的PHP应用程序的代码覆盖率报告。
代码覆盖率由生成,我正在使用过滤源文件。
问题是,当我设置选项addUncoveredFilesFromWhitelist="true"时,代码覆盖率会因以下错误而中断:
Generating code coverage report, this may take a moment.PHP Warning: include(CButtonColumn.php): failed to open stream: No such file or directory in /home/hijarian/systems/yii/f
disc@puff:~/php$ ls
a.php data include
disc@puff:~/php$ tree
.
├── a.php
├── data
│ └── d.php
└── include
├── b.php
└── c.php
2 directories, 4 files
disc@puff:~/php$ cat a.php
a.php is including include/b.php ...
<?php include "include/b.php" ?>
disc@puff:~
如何安装Soap?
我得到了这个错误:
致命错误:在第16行的/home/user/mysite.com/path/to/file.php中找不到类'SoapClient‘
我用DreamHost托管我的网站,他们不支持任何第三方安装。
更新:
我使用以下脚本复制了php.ini文件:http://sxi.sabrextreme.com/dh-phpini
我正在使用一个来自网站的API,它是这样写的:
#######################################################################
## You need to enab
我有一个带有一些功能测试的Symfony2项目。
当我在没有启用代码覆盖率的情况下运行测试套件时,没有任何问题。但是当我试图生成代码覆盖率时,我得到了一个PHP致命错误:
Generating code coverage report, this may take a moment.
PHP Fatal error: Allowed memory size of 209715200 bytes exhausted
(tried to allocate 79 bytes) in /usr/share/php/PHP/Token/Stream.php on line 205
PHP Stack
我有一个问题,使我的PHPUnit工作。我有很多问题,但现在我有了这个...
所以我在我的应用程序文件夹protected/Test...在我的控制台中,我写道:
phpunit unit/DbTest.php
回复get (很抱歉有很多信):附注:使用Wamp和Win8
PHP Warning: require_once(PHPUnit/Extensions/SeleniumTestCase.php): failed to o
pen stream: No such file or directory in C:\wamp\www\framework\test\CWebTestCase
.
我正在为我的项目配置Jenkins,我想创建phpdoc,但是它不起作用。我在用phing我的服务器和Debian在一起。
我所做的:
安装phpDoc
pear安装phpdoc/phpDocumentor-beta
Phing:
我得到了一个错误:
PHP Fatal error: Call to undefined method phpDocumentor\Parser\Parser::setTitle() in /usr/share/php/phing/tasks/ext/phpdoc/PhpDocumentor2Wrapper.php on line 169
PHP Fatal error: Class 'Symfony\Bundle\FrameworkBundle\Test\WebTestCase' not found in /home/manivasagam/projects/ProofCentral/src/ProofCentral/ServiceBundle/Tests/Services/AttachmentServiceTest.php on line 15
PHP Stack trace:
PHP 1. {main}() /usr/bin/phpunit:0
PHP 2. PHPUnit_TextUI_Comm
我有一个symfony2项目,它的某些功能使用Memcached。现在整个应用程序都崩溃了,因为它找不到Memcached类。
我同时安装了memcached和php5-memcached。我是不是遗漏了什么?
apt-get install memcached php5-memcached
原木:
2016/06/09 09:53:28 [error] 3592#0: *3 FastCGI sent in stderr: "PHP message: PHP Fatal error: Class 'Memcached' not found in /vagrant/ve