PHP为什么不“strtotime没有定义”

时间:2010-08-12 02:09:35

标签: php strtotime

// why does this not work PHP in XAMMP stack
// error: "strtotime is not defined"

$date2 = strtotime('2010-10-01');

1 个答案:

答案 0 :(得分:1)

根据http://us3.php.net/manual/en/calendar.installation.php

  

为了让这些功能起作用,你   必须编译PHP   --enable日历。

     

PHP的Windows版本   内置支持此扩展。   您无需加载任何其他内容   扩展以便使用这些   功能

或在OS X上:

  

sudo port install php5-calendar

如果不这样做,请尝试在系统的软件包管理器中查找php5-calendar。