07 2016 档案
摘要:1.fopen方式//访问指定URL函数 function access_url($url) { if ($url=='') return false; $fp = fopen($url, 'r') or exit('Open url faild!'); if($fp){ while(!feof($
阅读全文
摘要:定时相关函数: mytime= setTimeout(vCode, iMilliSeconds [, sLanguage]) -- 单次定时执行指定函数 clearTimeout(iTimeoutID) -- 取消上面的单次定时(iTimeoutID=mytime) setInterval(vCod
阅读全文
摘要:html代码: <!DOCTYPE HTML><html lang="en-US"><head> <meta charset="UTF-8"> <title></title> <style type="text/css"> div{width:100px;height:100px;border:1p
阅读全文