ICU upgrade for intl extension on zend server ce macosx
Where do I install the new version 开发者_开发百科of icu for intl ext on zend server ce macosx?
I tried as described on readme file but it installed it in /usr/local/lib and zend server is in /usr/local/zend Zend phpInfo still shows the old one.
How do I get it to work with zend?
Thanks.
Found great article in http://devzone.zend.com/1442/compiling-php-extensions-with-zend-server/ . worked for ubuntu 10.04.3 so also should work for mac:
- Install php sources from zend repository
- install/update your libicu-dev and libicu42
- cd /usr/local/zend/share/php-source/php-5.3.7RC4/ext/intl/
- /usr/local/zend/bin/phpize
- ./configure --with-php-config=/usr/local/zend/bin/php-config
- make
- make install
精彩评论