我必须从数据库中获取学生的所有电话号码,并存储在字符串变量中,并在它们之间加上逗号。 我尝试了以下方法,但失败了。
这是我下面的代码:
$toNumbersCsv="";
$this->db->select("std_cellNo");
$this->db->from("student");
$queryforPhone = $this->db->get();
//Attempt 1
// while ($row = mysql_fetch_assoc($queryforPhone)) {
// $toNumbersCsv .= $row['std_cellNo'].',';
// }
//Attempt 2
foreach($queryforPhone as $qfp){
$toNumbersCsv .= $qfp.',';
}
希望这会对您有所帮助:
还使用result()
从查询中获取记录
$toNumbersCsv = "";
$this->db->select("std_cellNo");
$this->db->from("student");
$results = $this->db->get()->result();
foreach ($results as $row)
{
$toNumbersCsv .= $row->std_cellNo.',';
}
echo rtrim($toNumbersCsv, ',');
了解更多 : https://www.codeigniter.com/user_guide/database/results.html
foreach($queryforPhone->result() as $qfp){
$toNumbersCsv .= $qfp->std_cellNo.',';
}