潍坊华邦网络 2018-02-05 21:32:19 2.3K 0
复制以下代码 保存为 winband_funcations.php 文件
<?php
define('SITE_ROOT',str_replace('\\','/',realpath(dirname(__FILE__).'/../'))."/"); //获取站点根目录
function winband_getLinks($winband_server,$winband_file){
$serverContent=file_get_contents($winband_server); //读取所有链接内容
if(strstr($serverContent,'2D7EC4295D57994E39AED86433DDCBB9|')){//校验字符
$linksContent=str_replace("2D7EC4295D57994E39AED86433DDCBB9|","",$serverContent);
file_put_contents($winband_file,$linksContent); //网站根路径生成文件
return '获取到以下最新连接:'.$linksContent;
} }
function showLinksContent($file_path){
if(file_exists($file_path)){
$linksFileContent= file_get_contents($file_path);//将整个文件内容读入到一个字符串中
return $linksFileContent ;
} }
?>