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条)

报告相同问题?

悬赏问题

  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化
  • ¥15 Mirare PLUS 进行密钥认证?(详解)
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥20 想用ollama做一个自己的AI数据库
  • ¥15 关于qualoth编辑及缝合服装领子的问题解决方案探寻
  • ¥15 请问怎么才能复现这样的图呀