How-to activate the ZipArchive class in PHP 5.3 on CentOS
I read on the documentation I should only compile PHP 5.3.3 with "--enable-zip" parameter, but this doesn't work. I did this but class_exists('ZipArchive')
always return 开发者_如何学编程false
. What should I do next?
Have you tried installing ZipArchive using pecl?
$ pecl install zip
then add extension=zip.so to your php.ini
Make sure that the Zip class is being loaded by your server by,
- Write a quick phpinfo(); script and check if Zip is enabled; and
- If it isn't, you can check the /etc/php.d/zip.ini file to make sure that the zip.so file is being loaded when PHP kicks off.
- As you can see here make sure you are using the class_exists function correctly for your version of PHP.
[ >= PHP 5.3]
If you are checking if a class exists that is in a specific namespace then you have to pass in the full path to the class:
echo (class_exists("com::richardsumilang::common::MyClass")) ? "Yes" : "No";
Hope that helps.
pecl install zip: compilation terminated. make: *** [php_zip.lo] Error 1 ERROR: `make' failed
精彩评论