Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
SoapClientを特定のアウトバウンドネットワークインターフェイスにバインドする必要がありますが、これに関するドキュメントが見つかりません。これも可能ですか?そうでない場合、いくつかの可能な回避策は何ですか?
bindtoオプションが設定されているsoapclientコンストラクターにストリームコンテキストを渡すことができます。
$opts = array( 'socket' => array( 'bindto' => '192.168.0.100:0', ), ); $ctx = stream_context_create($opts); $client = new SoapClient('the.wsdl', array('stream_context' => $ctx));