Php microtime()不在现场工作。寻找解决方法

时间:2015-09-07 19:23:01

标签: php wordpress hash uniqueidentifier microtime

我在Windows上有Zend Server 6.3和Php 5.4。系统运作良好。现在我将代码移动到实时站点,在Ubuntu Server上使用DirectAdmin运行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);

谢谢!

1 个答案:

答案 0 :(得分:2)

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

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

php5.4

以来可用

对于 php5.3 以及较旧的使用:

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