Skip to content

Instantly share code, notes, and snippets.

@ShenXuGongZi
Created April 17, 2014 13:32
Show Gist options
  • Save ShenXuGongZi/10983693 to your computer and use it in GitHub Desktop.
Save ShenXuGongZi/10983693 to your computer and use it in GitHub Desktop.
VPS有货无货监控脚本
<?php
$url = 'https://my.frantech.ca/cart.php?a=add&pid=1';
$content = file_get_contents($url);
if (preg_match("/Out of Stock/i", $content)) {
echo "我擦,没货!";
} else {
echo "我勒个去,终于有货了!";
sendMail();
}
function sendMail() {
if (!@mail("admin@qq.com这里是你的QQ", "我勒个去,终于有货了!", "我勒个去,终于有货了!")) {
echo "该服务器不支持 mail() 函数";
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment