Page 1 of 1

Adding php code that uses curl and zip in existing .net app

PostPosted: December 5th, 2013, 9:14 am
by atzoya
I'm trying to add a bunch of php code that uses PHP's zip and curl functions into an existing .net app. I'm having trouble using the zip methods (zip_open, zip_read, zip_entry_open ...), they seem to be throwing not implemented yet exceptions.

I have added PhpNetClassLibrary, PhpNetZip, PhpNetCurl in the assembly section of the phpnet/classLibrary web config section.

Is it possible to use these functions or should i look for a different solution and maybe rewrite most of the code?

Re: Adding php code that uses curl and zip in existing .net

PostPosted: December 8th, 2013, 11:34 am
by Jakub Misek
As I can see, zip functions are not implemented. The zip extension supports streams and some other features. You can see the current status at https://github.com/DEVSENSE/Phalanger/t ... nsions/Zip

Thanks,