Set-up PHP SOAP Extension in Windows

后端 未结 4 1764
走了就别回头了
走了就别回头了 2021-02-04 12:04

I\'m having a lot of confusions on how to set up PHP SOAP extension in windows based on what\'s on the net.

Could you please help me, how would I be able to do it?

4条回答
  •  情歌与酒
    2021-02-04 12:22

    Referring to the PHP docs, all you need to do is:

    1. Locate your php.ini file. This is normally under your folder (for example, C:/PHP5).
    2. Search for and uncomment the line that says ;extension=php_soap.dll, by removing the first ; character, to make it looks like extension=php_soap.dll
    3. Then restart your server.

    Note that the php_soap.dll is included in the default PHP5 distribution, and you can find it under the /ext folder.

    Hope this helps.

提交回复
热议问题