-1

我想在time()几分钟内添加功能。

我该怎么做?

function time() {
    return time() + 60*10;
}

死:

Fatal error: Cannot redeclare time() in /home/matan/domains/only4gamer.com/public_html/Framework/config.php on line 20

请帮忙!谢谢

4

2 回答 2

1

您不能重新声明 php 内置函数名称。相反,使用

function _time() {
return time() + 60*10;
}

或任何其他尚未由 php 保留的名称。

有关内置函数的更多信息,请查看: http: //php.net/manual/en/indexes.functions.php

于 2013-05-31T01:32:26.750 回答
0

PHP 已经有一个时间函数: http: //php.net/manual/fr/function.time.php 您不能创建与 PHP 原生函数同名的函数。你需要找到另一个名字;

于 2013-05-31T01:33:19.173 回答