2012年4月12日 星期四

AmfPHP 1.9 相容 PHP 5.3

1 下載 AmfPHP 1.9
http://www.silexlabs.org/amfphp/downloads/

 
2 strtotime 時區設定
設定 php.ini
;date.timezone =
修改為
date.timezone = "Asia/Taipei"

3 eregi_replace 改成  preg_replace

修改 /amfphp/core/shared/util/MethodTable.php

$comment = eregi_replace(”\n[ \t]+”, “\n”, trim($comment));
$comment = str_replace(”\n”, “\\n”, trim($comment));
$comment = eregi_replace(”[\t ]+”, ” “, trim($comment));
修改為
$comment = preg_replace(”'\n[ \t]+'U”, “\n”, trim($comment));
$comment = str_replace(”\n”, “\\n”, trim($comment));
$comment = preg_replace(”'[\t ]+'U”, ” “, trim($comment));