摘要: <?php /** 获取网卡的MAC地址原码;目前支持WIN/LINUX系统 获取机器网卡的物理(MAC)地址 **/ class GetMacAddr{ var $return_array = array(); // 返回带有MAC地址的字串数组 var $mac_addr; function GetMacAddr($os_type){ switch ( strtolower($os_type) ){ case "linux": ... 阅读全文
posted @ 2012-05-08 11:55 FreeSpider 阅读(898) 评论(0) 推荐(0) 编辑