PHP中使用extract函數
php中的extract函數
extract函數用來將一個數字分解成多個變量直接使用,下面是W3C的解釋:PHP extract() 函數從數組中把變量導入到當前的符號表中。對於數組中的每個元素,鍵名用於變量名,鍵值用於變量值。第二個參數 type 用於指定當某個變量已經存在,而數組中又有同名元素時,extract() 函數如何對待這樣的沖突。本函數返回成功設置的變量數目。
下面表格是參數說明:
語法
extract(array,extract_rules,prefix)
參數 | 描述 |
---|---|
array | 必需。規定要使用的輸入。 |
extract_rules |
可選。extract() 函數將檢查每個鍵名是否為合法的變量名,同時也檢查和符號表中的變量名是否沖突。 對非法、數字和沖突的鍵名的處理將根據此參數決定。可以是以下值之一: 可能的值:
|
prefix |
可選。請註意 prefix 僅在 extract_type 的值是 EXTR_PREFIX_SAME,EXTR_PREFIX_ALL,EXTR_PREFIX_INVALID 或 EXTR_PREFIX_IF_EXISTS 時需要。如果附加瞭前綴後的結果不是合法的變量名,將不會導入到符號表中。 前綴和數組鍵名之間會自動加上一個下劃線。 |
這個在從數據庫中取得一行數據的時候很好用,我們來看下面的例子
<?php $db = mysql_connect('localhost','root','Ctrip07185419') or die('can not connect to mysql'); mysql_select_db('moviesite',$db) or die(mysql_error($db)); mysql_query('set names gbk',$db); if(isset($_GET['action']) && $_GET['action'] == 'edit') { $query = 'SELECT movie_name,movie_type,movie_year,movie_leadactor,movie_director FROM movie WHERE movie_id='.$_GET['id']; //echo $query; $result = mysql_query($query , $db) or die(mysql_error($db)); extract(mysql_fetch_assoc($result)); } else { $movie_name=''; $movie_type=0; $movie_year=date('Y'); $movie_leadactor=0; $movie_director=0; } ?> <html> <head> <title><?php echo ucfirst($_GET['action']);?> Movie</title> <style type="text/css"></style> </head> <body> <form action="commit.php?action=<?php echo $_GET['action'];?>&type=movie" method="post"> <table> <tr> <td>Movie Name</td> <td><input type="text" name="movie_name" value="<?php echo $movie_name;?>"/></td> </tr> <tr> <td>Movie Type</td> <td><select name="movie_type" id=""> <?php $query = 'select movietype_id,movietype_label from movietype order by movietype_label'; $result = mysql_query($query , $db) or die(mysql_error($db)); while($row = mysql_fetch_assoc($result)) { if($row['movietype_id'] == $movie_type) { echo '<option value="'.$row["movietype_id"].'" selected="selected">'.$row["movietype_label"].'</option>'; } else { echo '<option value="'.$row["movietype_id"].'">'.$row["movietype_label"].'</option>'; } } ?> </select></td> </tr> <tr> <td>Movie Year</td> <td><select name="movie_year" id=""> <?php for($yr = date('Y');$yr>1970;$yr--) { if($yr == $movie_year) { echo '<option value="'.$yr.'" selected="selected">'.$yr.'</option>'; } else { echo '<option value="'.$yr.'">'.$yr.'</option>'; } } ?> </select></td> </tr> <tr> <td>Lead actor</td> <td><select name="movie_leadactor" id=""> <?php $query = 'select people_id,people_fullname from people where people_isactor = 1 order by people_fullname'; $result = mysql_query($query,$db) or die(mysql_error($db)); while($row = mysql_fetch_assoc($result)) { if($row["people_id"] == $movie_leadactor) { echo '<option value="'.$row["people_id"].'" selected="selected">'.$row["people_fullname"].'</option>'; } else { echo '<option value="'.$row["people_id"].'">'.$row["people_fullname"].'</option>'; } } ?> </select></td> </tr> <tr> <td>Director</td> <td><select name="movie_director" id=""> <?php $query = 'select * from people where people_isdirector=1 order by people_fullname'; $result = mysql_query($query , $db) or die(mysql_error($db)); while($row = mysql_fetch_assoc($result)) { if($row['people_id'] == $movie_director) { echo '<option value="'.$row['people_id'].'" selected="selected">'.$row["people_fullname"].'</option>'; } else { echo '<option value="'.$row['people_id'].'">'.$row["people_fullname"].'</option>'; } } ?> </select></td> </tr> <tr> <td colspan="2" style="text-align:center"> <?php if('edit' == $_GET['action']) { echo '<input type="hidden" value="'.$_GET["id"].'" name="movie_id"/>'; } ?> <input type="submit" name="submit" value="<?php echo ucfirst($_GET['action']);?>"/> </td> </tr> </table> </form> </body> </html>
註意標紅的語句,在使用extract之後可以直接使用變量,並且變量的名字是字段名字,變量的值是字段的值,這個有點類似於ado.net中從DataReader或DataSet中取得數據的方法Movie.Name = DataSet.Table[o].Row[i][“Name “].ToString() Movie.Name=reader[“Name “].ToString();
相比較之下php中的這個extract方式是不是比較的簡單直接呢??
到此這篇關於PHP中使用extract函數的文章就介紹到這瞭,更多相關PHP extract函數內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- MySQL與PHP的基礎與應用專題之內置函數
- PHP實現獲取MySQL數據庫的記錄數據
- PHP連接MySql數據庫方法簡化版
- 一文詳解PHP連接MySQL數據庫的三種方式
- MySQL與PHP的基礎與應用專題之數據查詢語句