1、登錄sql?server?managment管理工具,找一個(gè)表。
創(chuàng)新互聯(lián)建站專業(yè)為企業(yè)提供景東網(wǎng)站建設(shè)、景東做網(wǎng)站、景東網(wǎng)站設(shè)計(jì)、景東網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計(jì)與制作、景東企業(yè)網(wǎng)站模板建站服務(wù),十載景東做網(wǎng)站經(jīng)驗(yàn),不只是建網(wǎng)站,更提供有價(jià)值的思路和整體網(wǎng)絡(luò)服務(wù)。
2、假如要按照時(shí)間倒著排序。
3、直接在order?by?后面加desc。
4、然后結(jié)果就按照時(shí)間倒著排了。
5、不輸入desc的話就是正著排。
6、可以看到結(jié)果按照時(shí)間正著排了。
?php
$arr = array();
$query = mysql_query($sql);
while($row=mysql_fetch_assoc($query))
{
$arr[]=$row;
}
?
此時(shí) $arr 應(yīng)該是一個(gè)二維數(shù)組
我也很就糾結(jié)這個(gè)問題,現(xiàn)在我是這樣做的
$res = mysqli_query ($sql, "select BCur from microvast where id between 1 and 50");
foreach($res as $x=$x_value) {
foreach($x_value as $k=$v) {
$data[] = $v;
}
這樣可以$data[]生成了‘BCur’一列的一個(gè)索引數(shù)組,但是執(zhí)行效率不高,多列就要做多次查詢,期待更好的方法。
while ($row=mysqli_fetch_assoc($res)){
$id=$row["id"];
......
echo $id;
}
這個(gè)辦法只能打印出來
首先定義一個(gè)數(shù)組,然后遍歷數(shù)據(jù)表,把相應(yīng)的數(shù)據(jù)放到數(shù)組中,最后通過json_encode()轉(zhuǎn)化數(shù)組
json_encode() 函數(shù)的功能是將數(shù)值轉(zhuǎn)換成json數(shù)據(jù)存儲(chǔ)格式。
例如:
?php
//定義一個(gè)數(shù)組,用于保存讀取到的數(shù)據(jù)
$array = array();
$query = mysql_query("select * from table");
//遍歷數(shù)據(jù)表
while($rows = mysql_fetch_array($query)){
//可以直接把讀取到的數(shù)據(jù)賦值給數(shù)組或者通過字段名的形式賦值也可以
$array[] = $rows;
$array[$rows['id']] = $rows;
}
print_r($array);
//最后通過json_encode()轉(zhuǎn)化數(shù)組
echo json_encode($array);
?
因?yàn)椴恢С执a標(biāo)簽了,上面放圖,下面是代碼
php API 中沒有可以直接打到效果的函數(shù),在此封裝了一個(gè)
下面是代碼
代碼部分
?php
/**
* $list 數(shù)組
* $column_num 數(shù)據(jù)列數(shù)量
*/
function groupBy($list, $column_num){
$group = [];
$keys = array_keys($list);
for ($i=0; $i$column_num; $i++){
? $item = [];
? foreach ($keys as $key){
? ? ? $item[$key] = $list[$key][$i];
? }
? $group[] = $item;
}
return $group;
}
$temp = [
'bg' = ['bg1','bg2','bg3'],
'img' = ['img1','img2','img3'],
'url' = ['url1','url2','url3'],
];
$list = groupBy($temp,3);
echo(json_encode($list));
?
本文實(shí)例講述了php實(shí)現(xiàn)通用的從數(shù)據(jù)庫表讀取數(shù)據(jù)到數(shù)組的函數(shù)。分享給大家供大家參考。具體分析如下:
此函數(shù)不關(guān)心表結(jié)構(gòu),只需要指定表名、結(jié)構(gòu)和查詢條件既可以對表進(jìn)行通用查詢操作,非常實(shí)用。
function listmytablerows($table, $name, $field, $where, $textID) { / / Connect to the database and query execution connect (); $Sql = "select * from". $table. "". $where. "ORDER BY". $field; $Req = mysql_query($sql); $Res = mysql_num_rows($req); ? Select name = "?php echo $name; ?" id="?php echo $textID; ?" option value="" ____/ option ? Php / / We do a loop that will read the information for each record while ($data = mysql_fetch_array($res)) { / / We display the information from the current record ? Option value = "?php echo $data['id']; ?" ?php echo $data[$field]; ? / Option ? Php } ? / Select ? Php } ?