欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

设置URL访问指定IP的服务器

程序员文章站 2023-12-23 23:41:57
...
在代码里面设定url访问对应ip的服务器,适用于lvs等集群服务器的管理

1. url_bind_ip.php

<?php
/*
 * 在代码里面设定url访问对应ip的服务器
 * 适用于lvs等集群服务器的管理
 * 根据需要,可自行添加返回值
 */
 
url_bind_ip('http://www.xxx.com/index.php?aa=123','192.168.10.23'); // 这是示例
 
function url_bind_ip($url, $ip = null) {  
           
    $url = parse_url($url);  
    
    if (!isset($url['port'])) {  
        if ($url['scheme'] == 'http'){  
            $url['port'] = 80;   
        } else if ($url['scheme'] == 'https'){  
            $url['port'] = 443;  
        }  
    }  
       
    $url['query'] = isset($url['query'])?$url['query']:'';  
    $url['protocol'] = $url['scheme'].'://';  
    $eol="\r\n";  
    
    $headers = 'GET '.$url['protocol'].$url['host'].$url['path'].'?'.$url['query'].' HTTP/1.1'.$eol.   
               'Host: '.$url['host'].$eol.   
               'Content-Length: '.strlen($url['query']).$eol.  
               $eol.$url['query'];  
    $fp = fsockopen($ip ? $ip : $url['host'], $url['port'], $errno, $errstr, 5);   
     
    if ($fp) {  
        fwrite($fp, $headers);
    } 
     
} 
 
?>

以上就是设置URL访问指定IP的服务器的内容,更多相关内容请关注PHP中文网(www.php.cn)!

上一篇:

下一篇: