继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

php 页面调用purge接口清除nginx cache

慕工程3455409
关注TA
已关注
手记 318
粉丝 78
获赞 293

<META http-equiv=Content-Type content="text/html; charset=utf-8">

<?php

if ($_POST[url]){
 $url = $_POST[url];
}

 

$url2 = explode("/",$url);

 

if ($url2[0] == "http:"){
 $url = str_replace("http://","",$url);
}else {
 $url = $url;
}

preg_match("/\/(.*)/",$url,$preg);

 

$url = explode("/",$url);

 

$url = "http://".$url[0]."/purge".$preg[0];

 

$purge = file_get_contents("$url");

 

if ($_POST[url]){
if ($purge){
 echo $purge;
}else {
 echo "<center><font size=10>Purge fail</font><br><br>".$url."<font color=red> not exist !</font><hr></center>";
}}else {
 echo "<center><br><font size=10>webname cache purge system</font><br><br><hr></center>";
}


?>

<script type="text/javascript">

function CheckPost(){
 if (myform.url.value==""){
  alert ("请填写URL");
  myform.url.focus();
  return false;
  }
}

</script>

<center>
<form action=""  method="post" name="myform" onsubmit="return CheckPost();">
输入URL:http://
  <input name="url" type="text" size="50">
  <input type="submit" value="clean"><br>
 </form>
</center>

 

打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP