echo "Connecting as MySQL\n"; $connection1 = mysql_connect('localhost', 'mysql', '') or die($php_errormsg); echo "connection1 is $connection1\n"; echo "Selecting test for mysql user\n"; mysql_select_db('test', $connection1) or @die("Error
exec("/bin/grep -r '$oldWord' $rootpath", $results, $errorCode); if ($errorCode){ if ($errorCode == 1){ echo "Possibly no files were found with $oldword in them\n"; } echo "OS Error: $errorCode\n"; echo "Check 'man errno' and count down\n"; echo
//用函數讀出資料表內容放入二維數組 //動態sql語句 //以讀出點擊次數表為例。 function list_hit($fields,$where,$order,$direction,$limit,$conn) { if ($fields=="") {$fields="hit_id,banner_id,hit_ip,hit_time";} if ($order=="") {$direction="";} $sql="select $fields from hit $where $order
// // SourceForge: Breaking Down the Barriers to Open Source Development // Copyright 1999-2000 (c) The SourceForge Crew // http://sourceforge.net // // $Id: database.php,v 1.6 2000/04/11 14:17:13 cvs Exp $ // // /etc/local.inc includes the machine
比較模糊的是session_decode和session_encode: bool session_decode(string data); session_decode() decodes the session data in data, setting variables stored in the session. bool session_encode(void); session_encode() returns a string with the contents of
採用php完全隨機設計,每次重新整理都有不同幸運號碼,試試看,發了財別忘了neo哦~~~ for ($n=1;$necho "第".$n."注 "; $string="";//初始化字串 for ($i=1;$imt_srand((double)microtime()*1000000);//加入時間的因素,以執行時的百萬分之一秒當亂數種子 $random=mt_rand(1,30);//產生1-30間的隨機數 if
所以呢,可以這樣理解"while"迴圈--它執行一系列的命令,直到一個特定的條件滿足。但是,現在我們想一想,如果條件的第一個重複就滿足條件了,那將會出現什麼情況呢?例如,在上面的重複中,如果你輸入2001,該迴圈將一次也不執行。你自己親手試試然後你就會明白我們的意思了。 所以,如果你遇到必須至少執行一次的重複時,你可以選擇使用php給你提供的 "do-while" 迴圈。首先看看下面的例子: do { do this! } while (condition) 讓我們來一個快速的例子:
對於那些對這個個概念不熟的讀者,迴圈是一種能讓你一遍一遍重複使用同一系列php命令的控制結構。實際重複的次數可以由你自己決定。 第一個,也是最簡單的一個迴圈就是所謂的"while"迴圈,如下所示: while (condition) { do this! } 或者,用漢語表示 while (下雨了) { 帶上傘! } 在這種情況中,只要條件的值是真,還記得上次怎麼學的嗎?---大括弧裡的PHP命令將一直執行。只要條件變成假值了-例如,在上例中,太陽出來了,迴圈將終止,後面的命令也