以下错误的原因是什么?如何解决问题?
gmmktime(): You should be using the time() function instead
第 90 行中的问题:
89 date_default_timezone_set("GMT");
90 $time = gmmktime();
最佳答案
gmmktime() 内部使用 mktime() ,当不带参数调用时会抛出 E_STRICT 通知,因此请改用 time() 函数。
关于php - gmmktime() : You should be using the time() function instead,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18974274/