search
Homephp教程php手册PHP跨平台获取服务器IP地址自定义函数分享

这篇文章主要介绍了PHP跨平台获取服务器IP地址自定义函数分享,本文函数会根据系统类型选择不同的命令来获取服务器的IP地址,需要的朋友可以参考下

近期需要完善一个log机制,监控来自不同服务器的机器的脚本执行状况,,特针对windows和Linux及web与命令行模式书写了一个函数来兼容。

写了如下一个function来,可以实现上面的需求:

复制代码 代码如下:


function getServerAddr() {  
    //运行 web app  
    if (isset($_SERVER["SERVER_ADDR"])) {  
        return $_SERVER["SERVER_ADDR"];  
    } else { // Running CLI  
        if (stristr(PHP_OS, 'WIN')) {  
            //  针对windows服务器所执行的一种hacky方式   
            exec("ipconfig /all", $catch);  
            foreach ($catch as $line) {  
                $new_catch[] = iconv("gbk", "utf-8", $line) . "\n";  
            }  
            foreach ($new_catch as $new_line) {  
                if (preg_match(‘/IPv4 地址/', $new_line)) { //中文系统  
                    list($t, $ip) = explode(‘:', $new_line);  
                    $ip = trim($ip);  
                    preg_match(‘/((?:(?:25[0-5]|2[0-4]\d|((1\d{2})|([1-9]?\d)))\.){3}(?:25[0-5]|2[0-4]\d|((1\d{2})|([1-9]?\d))))/', $ip , $match);  
                    return $match[1];  
                }  
            }  
        } else {  
            $ifconfig = shell_exec(‘/sbin/ifconfig eth0′);  
            preg_match(‘/addr:([\d\.]+)/', $ifconfig, $match);  
            return $match[1];  
        }  
    }  
}  
 
$ip = getServerAddr();  
print $ip;

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment