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?
Thanks for your help.
|
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 Thanks for your help.
| |||
|
feedback
|
|
Make sure that the Zip class is being loaded by your server by,
[ >= 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. | |||
feedback
|