您好,登錄后才能下訂單哦!
本篇內(nèi)容主要講解“PHP中如何使用extract函數(shù)”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“PHP中如何使用extract函數(shù)”吧!
extract函數(shù)用來將一個數(shù)字分解成多個變量直接使用,下面是W3C的解釋:PHP extract() 函數(shù)從數(shù)組中把變量導(dǎo)入到當(dāng)前的符號表中。對于數(shù)組中的每個元素,鍵名用于變量名,鍵值用于變量值。第二個參數(shù) type 用于指定當(dāng)某個變量已經(jīng)存在,而數(shù)組中又有同名元素時,extract() 函數(shù)如何對待這樣的沖突。本函數(shù)返回成功設(shè)置的變量數(shù)目。
下面表格是參數(shù)說明:
extract(array,extract_rules,prefix)
參數(shù) | 描述 |
---|---|
array | 必需。規(guī)定要使用的輸入。 |
extract_rules | 可選。extract() 函數(shù)將檢查每個鍵名是否為合法的變量名,同時也檢查和符號表中的變量名是否沖突。 對非法、數(shù)字和沖突的鍵名的處理將根據(jù)此參數(shù)決定。可以是以下值之一: 可能的值:
|
prefix | 可選。請注意 prefix 僅在 extract_type 的值是 EXTR_PREFIX_SAME,EXTR_PREFIX_ALL,EXTR_PREFIX_INVALID 或 EXTR_PREFIX_IF_EXISTS 時需要。如果附加了前綴后的結(jié)果不是合法的變量名,將不會導(dǎo)入到符號表中。 前綴和數(shù)組鍵名之間會自動加上一個下劃線。 |
這個在從數(shù)據(jù)庫中取得一行數(shù)據(jù)的時候很好用,我們來看下面的例子
<?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>
注意標(biāo)紅的語句,在使用extract之后可以直接使用變量,并且變量的名字是字段名字,變量的值是字段的值,這個有點類似于ado.net中從DataReader或DataSet中取得數(shù)據(jù)的方法Movie.Name = DataSet.Table[o].Row[i]["Name "].ToString() Movie.Name=reader["Name "].ToString();
到此,相信大家對“PHP中如何使用extract函數(shù)”有了更深的了解,不妨來實際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。