严格标准:声明应与PDO声明兼容

时间:2016-11-07 11:35:15

标签: php mysql pdo zend-framework2

我正在尝试运行其他团队开发的代码。我配置并运行项目但是我收到了对我来说很新的跟踪错误。

  

严格标准:DB_Statement_1 :: execute()的声明应该是   兼容PDOStatement :: execute($ bound_input_params = NULL)in   第12行的/vhosthosts/libolution/DB/Statement.1.php

     

严格标准:DB_Statement_1 :: fetch()的声明应该与PDOStatement :: fetch兼容($ how = NULL,$ orientation = NULL,   在/virtualhosts/libolution/DB/Statement.1.php上的$ offset = NULL)   12

第12行是在这里。

/**
 * A statement class that implements DB_IStatement_1
 * NOTE: in most cases, you should be type-hinting for DB_IStatement_1
 * @author Andrew Minerd <andrew.minerd@sellingsource.com>
 */ 
   following line is #12
  class DB_Statement_1 extends PDOStatement implements DB_IStatement_1
{   public function execute(array $args = NULL)
    {
        // apparently, PDO counts the number of arguments to indicate missing
        // optional parameters, rather than relying on a default value
        $result = ($args !== NULL)
            ? parent::execute($args)
            : parent::execute();

        if ($result === FALSE)
        {
            throw new PDOException('Could not execute statement');
        }
        return $result;
    }

    /**
     * Fetches a single row
     *
     * @param int $fetch_mode
     * @return mixed
     */
    public function fetch($fetch_mode = DB_IStatement_1::FETCH_ASSOC)
    {
        return parent::fetch($fetch_mode);
    }

同一个包中有以下类。

DatabaseConfigPool.1.php  MSSQLAdapter.1.php           MySQL4Adapter.1.php           ODBCConfig.1.php              TransactionAbortedException.1.php
EmulatedPrepare.1.php     MSSQLAdapterException.1.php  MySQL4AdapterException.1.php  PoolConfig.1.php              TransactionManager.1.php
FailoverConfig.1.php      MSSQLConfig.1.php            MySQL4StatementAdapter.1.php  Profiler                      Util
IConnection.1.php         MSSQLConfig.2.php            MySQLConfig.1.php             Query.1.php                   Util.1.php
IDatabaseConfig.1.php     MSSQLStatementAdapter.1.php  MySQLiAdapter.1.php           SQLiteConfig.1.php
IStatement.1.php          MultiplexConfig.1.php        MySQLiAdapterException.1.php  Statement.1.php
[vendorapi@808680-app2 DB]$ nano Statement.1.php

所以其中一个被覆盖了。

感谢所有

1 个答案:

答案 0 :(得分:0)

这可能是由于PHP版本的升级,以及PHP如何处理PHP 5.4 +

中的不同错误

首先,你可以禁用严格的错误来解决这个错误:

error_reporting(E_ALL ^ E_STRICT);

注意E_STRICT - 这是PHP 5.4 +

的新功能

但是,如果您想保留严格的错误,可以通过更改代码来摆脱它们。您需要确保类重写具有正确的原型/定义以消除错误。

案例1)

class DB_Statement_1 extends PDOStatement implements DB_IStatement_1
{   
    public function execute($args = NULL) { ... }

    ....
}

删除&#39;数组&#39;键入提示,因为父类没有一个,这应该可以摆脱第一个错误等。