0

我在 Windows 上有 Zend Server 6.3 和 Php 5.4。并且系统运行良好。现在我将代码移动到实时站点,该站点使用 DirectAdmin 在 Ubuntu 服务器上运行 Php 5.3.29。所有其他网站都在那里运行良好。但是我当前的网站给了我这个错误(该网站在 WordPress 4.3 上):

Warning: mysql_connect(): Headers and client library minor version mismatch.
Headers:50541 Library:50623 in /home/cheapauto/domains/*DOMAIN*/public_html/wp-includes/wp-db.php on line 1482
Parse error: syntax error, unexpected '[' in /home/*USER*/domains/*DOMAIN*/public_html/wp-content/plugins/*MY-PLUGIN*/includes/final.class.NRSBooking.php on line 101 

这条线是这样的:

$now = explode(' ', microtime())[1];

我的整个插件功能是这样的:

private function getIncrementalHash($length = 5)
{
    //$charset = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
    $charset = "ABCDEFGHIJKLMNPRSTUVYZ"; // fits LT & EN, O is skipped to similarity to Zero
    $charsetLength = strlen($charset);
    $result = '';

    $now = explode(' ', microtime())[1];
    while ($now >= $charsetLength)
    {
        $i = $now % $charsetLength;
        $result = $charset[$i] . $result;
        $now /= $charsetLength;
    }
    return substr($result, -$length);
}

任何想法如何使它在现场工作?

根据 PHP 参考http://php.net/manual/en/function.microtime.php 它说:

microtime() 以微秒为单位返回当前的 Unix 时间戳。此函数仅在支持 gettimeofday() 系统调用的操作系统上可用。

我使用该函数生成唯一的新预订代码:

$newBookingCode = "R".$validNextMySQLInsertId."A".$this->getIncrementalHash(5);

谢谢!

4

1 回答 1

2

数组解引用,即从返回数组的函数中获取结果,例如:

$now = explode(' ', microtime())[1];

php5.4起可用

对于php5.3及更早版本的使用:

$now = explode(' ', microtime());
$now = $now[1];
于 2015-09-07T19:27:09.123 回答