<?php $content = ""; $fp = fopen("http://file-to-download.com/a-file.zip", "rb"); if (!$fp) die("Error opening file."); while (!feof($fp)) $content .= fread($fp, 2048); fclose($fp); $fp=fopen("local-file-name.zip", "w"); fwrite($fp, $content); fclose($fp); ?>
- Feb 19 Wed 2014 08:32
php fopen download file 下載檔案
- Feb 17 Mon 2014 20:41
在 php 使用 at 命令 增加排程
首先要講下 at 命令 是要用 /bin/bash shell 來執行的,
你可以在php裡查一下 apache 使用的是哪個 shell,
<?
$output = shell_exec('echo $SHELL');
- Feb 17 Mon 2014 18:54
php mysql 取得 最後 自動增加 欄位 值 increment value
mysql_insert_id()
- Feb 16 Sun 2014 13:30
javascript 如何傳入變數成為物件的名稱
通常
傳入參數是
function test(obj){
a=obj.style.pixelLeft
b=obj.style.pixelTop
}
*obj是網頁上的物件
但是
我認為比較好懂的方法是
function test(objID){
var obj = document.getElementById(objID);
a=obj.style.pixelLeft
b=obj.style.pixelTop
}
- Feb 16 Sun 2014 13:28
javascript http requrest
function httpGet(theUrl){var xmlHttp =null;
xmlHttp =newXMLHttpRequest();
xmlHttp.open("GET", theUrl,false);
xmlHttp.send(null);return xmlHttp.responseText;}
- Feb 16 Sun 2014 13:27
move_uploaded_file gives “failed to open stream: Permission denied ” error
This is because images
and tmp_file_upload
are only writable by root
user. For upload to work we need to make the owner of those folders same as httpd process owner OR make them globally writable (bad practice).
- Check apache process owner:
ps aux | grep httpd
. The first column will be the owner typically it will benobody
-
Change the owner of
images
andtmp_file_upload
to be becomenobody
or whatever the owner you found in step 1.$sudo chown nobody /var/www/html/mysite/images/
- Feb 16 Sun 2014 08:31
php 上傳多個檔案
- Feb 16 Sun 2014 06:43
不刷新頁面,而刷新圖片
首先說一下document對象的來歷。在瀏覽器訪問的任何一個頁面,都會在內存中以XML的形式存在一個副本,瀏覽器遵循一個內部算法將HTML轉成XML,這種XML,javascript可以直接訪問,重要的是,它可以被修改並立即在瀏覽器中實現。
簡單的說DOM就是用來表示XML的元素,我們使用一個名為document來引用它,基於這個實例,我們可以查詢每個XML元素,即Element對象。
在WEB中,如果我們指定了某個元素的屬性「id=」,就可以使用Document對象的成員方法getElementByID()來檢索這個元素。
代碼=======================
<td>
<IMG id ="2XSHZ" >
</td>
<script language="javascript" >
var i = Math.random();
document.getElementById("2XSHZ").src="2XSHZ.jpg?i="+i;
</script>
- Feb 16 Sun 2014 06:41
HTML5 Server-Sent Events 機制簡介 exmaple asp.net
【實作 Server 端】
所謂 Server-Sent Event 中文解釋為伺服器推送或伺服器推播,主要是用來將伺服器上的資料自動傳輸至 Client 端,使用的是 HTTP 通訊協定。首先需要 Server 端的應用程式,筆者以 ASP.NET 泛型處理常式來實作本文 Server 端的應用程式,您也可以利用 PHP、JSP 等其他 Server 端的程式語言來實作。
- Feb 16 Sun 2014 06:38
Javascript Jquery 更換背景圖片
$('body').css('background-image','url(../images/backgrounds/header-top.jpg)');