2013年11月14日 星期四

php 使用 fsockopen 取回需登入的網站資料


<?php

$yoursite ="http://website.com"
$name = "name";
$password = "password";

$string=base64_encode($name.":".$password);
$head="GET / HTTP/1.0\r\n\r\n";
$head.="Accept: text/html\r\n";
$head.="Authorization: Basic $string\r\n\r\n";

$fp =fsockopen($yoursite, 80, $errno, $errstr, 30);

if (!$fp) {echo "$errstr ($errno)";
}
else
{
fwrite ($fp, $head);
while (!feof($fp)) echo fgets ($fp,128);
}
fclose ($fp);
?>

PHP fsockopen 去除 Header

<?php

substr($httpdata, strpos($httpdata,"\r\n\r\n")+4);

?>

2013年11月12日 星期二

[部落格介紹] 八克里


分類
生態紀錄

網址

介紹
這是巴克里的布拉格(mtchang's blog)!!記錄雖是零散但卻是最真實的呈現。

jQuery 檢查特定一個單選框, 是否有被點選


Html Code
<input id=name1 type=radio>
<input id=name1 type=radio>

JS Code
if (  $("input[type='radio']").get(1).checked ){
   console.log="checked";
}