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

一个图形显示IP的PHP程序代码

程序员文章站 2022-08-29 18:56:47
先看代码sunip.php 复制代码 代码如下:
先看代码
sunip.php
复制代码 代码如下:

<?php 
header("content-type: image/gif"); 
$im = imagecreate(130,15); 
$background_color = imagecolorallocate ($im, 255, 255, 255);  
unset($ip); 
if($_server['http_client_ip']){ 
$ip=$_server['http_client_ip']; 
} else if($_server['http_x_forwarded_for']){ 
$ip=$_server['http_x_forwarded_for']; 
} else{ 
$ip=$_server['remote_addr']; 

$col = imagecolorallocate($im, 0, 51, 102); 
imagestring($im, 3, 5, 1, $ip , $col);  
imagegif($im); 
imagedestroy($im); 
?> 

下面我逐条讲解
什么下 本人也不是什么高手 揣摩出来的
1. <?php   
2. header("content-type: image/gif");
第二行 声明浏览器标头 输出为gif图形
3. $im = imagecreate(130,15);
建立一个图形 imagecreate(130,15)括号内130,15分别代表宽度和高度
4. $background_color = imagecolorallocate ($im, 255, 255, 255); 
设置背景颜色 imagecolorallocate 为一幅图片分配颜色 ($im, 255, 255, 255)im代表前面提到的新建图形 后面的3个255则代表颜色表ffffff的10进制字符
5. unset($ip);
无用
6.if($_server['http_client_ip']){
$ip=$_server['http_client_ip'];
} else if($_server['http_x_forwarded_for']){
$ip=$_server['http_x_forwarded_for'];
} else{
$ip=$_server['remote_addr'];
}
如果$_server['http_client_ip']可以使用则使用$_server['http_client_ip']下面类似 为判断 此段是为了兼容多种服务器设置
7. $col = imagecolorallocate($im, 0, 51, 102);
定义文字颜色
8. imagestring($im, 3, 5, 1, $ip , $col); 
将获取到的ip画到新建的画布上 imagestring($im, 3, 5, 1, $ip , $col); 分别代表imagestring(图形表示,字符尺寸1-5,x坐标,y坐标,输出的ip,颜色)
9. imagegif($im);
输出gif图形
10. imagedestroy($im);
释放内存
11. ?>
程序结束