# 推奨: 「php に SOAP 拡張機能をインストールする方法: 最初に「php.ini」ファイルを開き、次にコードを「extension = php_soap.dll」として追加し、最後に SOAP 構成項目を変更して保存します。
PHP ビデオ チュートリアル 」
SOAP 拡張機能のインストール
Windows プラットフォームの場合、php.ini に次のコードを追加する必要があります:extension = php_soap.dll
[soap] ; Enables or disables WSDL caching feature. ; http://php.net/soap.wsdl-cache-enabled soap.wsdl_cache_enabled=1 ; Sets the directory name where SOAP extension will put cache files. ; http://php.net/soap.wsdl-cache-dir soap.wsdl_cache_dir="D:/wamp/tmp" ; (time to live) Sets the number of second while cached file will be used ; instead of original one. ; http://php.net/soap.wsdl-cache-ttl soap.wsdl_cache_ttl=86400 ; Sets the size of the cache limit. (Max. number of WSDL files to cache) soap.wsdl_cache_limit = 5
以上がPHPにsoap拡張機能をインストールする方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。