0

I have recently build curl with http2 support using visual studio. I have tested the curl.exe on command prompt. It is working as expected.

My requirement is that i have to use this built curl in my website running in xampp.

I know that the php in xampp already has its curl extension. It is in the file php.ini on line 878.

extension=php_curl.dll

It is in .dll How can i change this so that it points to my built curl.

If it is not possible in xampp, you can suggest some other away. But my requirement is that i have to use this built curl in my php project.

Thanks.

Aky Kumar
  • 113
  • 1
  • 1
  • 4

1 Answers1

0

Copy your version of the DLL's into the \xammp\php\ext folder. That is where PHP gets them from, and thats all you need to do apart from restart Apache.

Better make a backup of the originals in case yours dont work

RiggsFolly
  • 93,638
  • 21
  • 103
  • 149