// why does this not work PHP in XAMMP stack
// error: "strtotime is not defined"
$date2 = strtotime('2010-10-01');
答案 0 :(得分:1)
根据http://us3.php.net/manual/en/calendar.installation.php,
为了让这些功能起作用,你 必须编译PHP --enable日历。
PHP的Windows版本 内置支持此扩展。 您无需加载任何其他内容 扩展以便使用这些 功能
或在OS X上:
sudo port install php5-calendar
如果不这样做,请尝试在系统的软件包管理器中查找php5-calendar。