dpfwhb7470 2016-11-18 09:11
浏览 31
已采纳

从数据库MySQL制作数组

I have database connection. I want to make an array but something is problem i think. Here is my array code:

$var = "SELECT SUBSTRING(KayitTarihi,1,4) AS year,SUBSTRING(KayitTarihi,6,2) AS month,SUBSTRING(KayitTarihi,9,2) AS day,SUBSTRING(KayitTarihi,12,2) AS saat,SUBSTRING(KayitTarihi,15,2) AS dakika,Guc FROM Urun WHERE Date(KayitTarihi)=\"".$link_m."\"";

$result = $mysqli->query($var);

$data = array();
foreach ($result as $row) {$data[] = $row;}

print_r($data);

$no=1;$total_deger=count($data);
echo $total_deger;

for($i=0;$i<$total_deger);$i++){
    $xxx[i]="[Date.UTC(".$data[i]['year'].",".$data[i]['month'].",".$data[i]['day'].",".$data[i]['saat'].",".$data[i]['dakika'].",00),".$data[i]['Guc']."]";if($no < $total_deger){echo ",";}
    echo $xxx[i];
}

When I run this code, nothing happens in page. When I write to for example 0 for i. I can see my array value. Where do I mistake?

  • 写回答

2条回答 默认 最新

  • duan0530 2016-11-18 09:22
    关注

    Code with correction and suggestion (both are commented):-

    <?php
    error_reporting(E_ALL); // check all errors
    ini_set('display_errors',1);// display those errors
    $var = "SELECT SUBSTRING(KayitTarihi,1,4) AS year,SUBSTRING(KayitTarihi,6,2) AS month,SUBSTRING(KayitTarihi,9,2) AS day,SUBSTRING(KayitTarihi,12,2) AS saat,SUBSTRING(KayitTarihi,15,2) AS dakika,Guc FROM Urun WHERE Date(KayitTarihi)=\"".$link_m."\"";
    
    $result = $mysqli->query($var);
    
    $data = array();
    
    if ($result->num_rows > 0) { // check you got results or not
        while($row = $result->fetch_assoc()) { 
            $data[] = $row; // assign them
        }
    }
    
    //foreach ($result as $row) {$data[] = $row;} // not needed 
    
    print_r($data);
    
    $no=1;
    
    $total_deger= count($data);
    
    echo $total_deger;
    
    for($i=0;$i<$total_deger;$i++){ // remove )
    
    $xxx[$i]="[Date.UTC(".$data[$i]['year'].",".$data[$i]['month'].",".$data[$i]['day'].",".$data[$i]['saat'].",".$data[$i]['dakika'].",00),".$data[$i]['Guc']."]"; // use $i  instead of i
    if($no < $total_deger)
    {
        echo ",";
    }
    echo $xxx[$i];
    
    }
    

    Note:- Always add some error reporting code. So that all errors will populated and you can rectify those

    Also better would be to use foreach() instead of for loop (as it will take care of indexes itself):-

    //use foreach
    foreach ($data as $dat){
        echo "[Date.UTC(".$data['year'].",".$data['month'].",".$data['day'].",".$data['saat'].",".$data['dakika'].",00),".$data['Guc']."]";
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥20 机器学习能否像多层线性模型一样处理嵌套数据
  • ¥20 西门子S7-Graph,S7-300,梯形图
  • ¥50 用易语言http 访问不了网页
  • ¥50 safari浏览器fetch提交数据后数据丢失问题
  • ¥15 matlab不知道怎么改,求解答!!
  • ¥15 永磁直线电机的电流环pi调不出来
  • ¥15 用stata实现聚类的代码
  • ¥15 请问paddlehub能支持移动端开发吗?在Android studio上该如何部署?
  • ¥20 docker里部署springboot项目,访问不到扬声器
  • ¥15 netty整合springboot之后自动重连失效