Created
April 17, 2014 13:32
-
-
Save ShenXuGongZi/10983693 to your computer and use it in GitHub Desktop.
VPS有货无货监控脚本
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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("[email protected]这里是你的QQ", "我勒个去,终于有货了!", "我勒个去,终于有货了!")) { | |
echo "该服务器不支持 mail() 函数"; | |
} | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment