$ASPservername : この変数は /etc/hosts ファイルに IP を指定する必要があります。
$ASPpath : サーバー側の ASP ファイル パス。 : ASP ファイル名
$ASPurlredirect: $ASP ファイルのパラメーター
$ASPservername = "WEB_SQLSERVER";
$ASPpath = "/development /sqlserver/"; " storageprocs.asp?";
$ASPurlredirect = "clienthostpage=".strstr($SCRIPT_NAME, "/")
//IIS/ASP サーバーに接続します
$fp=fsockopen($ASPservername, $ASPport, &$ errno, &$errstr);
if($fp) { //サーバーへの GET モード
$sRequest = ".$ASPpath.$ASPfile;
$sProtocol = " HTTP/1.0 nn"; ! strlen(chop($QUERY_STRING))){
$httpget=$sRequest.$ASPurlredirect.$sProtocol; } else {
// クライアントから ASP ファイルに送信
fputs($fp,$httpget); ASPファイルの返された結果
< html> ");
http://www.bkjia.com/PHPjc/315914.html
www.bkjia.com
true
http://www.bkjia.com/PHPjc/315914.html
技術記事
? $ASPservername: この変数には、/etc/hosts ファイルに IP が含まれている必要があります。 $ASPport: ASP ファイル サーバーのポート番号 $ASPfile: ASP ファイル名 $ASPurlredirect...