関数を分解しようとしています データベースから CSV データを取得するために使用される関数について警告通知を受け取りました。
この関数は index.php ファイルから呼び出され、次のようにフォーマットできます。
$masterRecords = $qb->genResultsTable($qid, $config[27]);
$config[27]
動的に設定されますが、理解を助けるためです。これはピリオドで区切られた整数のリストです。例えば"3.4.5.6.7.8.9.25.141.137.83"
$qid
は整数"63"
です。
関数は動作しますが、php の通知を取り除くことができるかどうかを確認したいと思います。
ループを通過したすべてのアイテムの通知を取得する:
Notice: Undefined offset: 106 in /vagrant/public/arc/inc/lib.php on line 522
コール スタック:
1 0.0028 417156 {main}() ../index.php:0
2 1.2886 473280 qb->genResultsTable() ../index.php:66
関数:
public function genResultsTable($qid, $clist) {
$url = "{$this->qb_ssl}{$this->db_id}?act=API_GenResultsTable&ticket={$this->ticket}&apptoken={$this->app_token}&qid={$qid}&clist={$clist}&slist={$clist}&options=csv";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_COOKIEJAR, $this->cjFile);
curl_setopt($ch, CURLOPT_COOKIEFILE, $this->ckfile);
// curl_setopt($ch, CURLOPT_HEADER, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_MAXREDIRS, 10);
curl_setopt($ch, CURLOPT_COOKIE, "TICKET=" . urlencode($this->ticket));
$r = curl_exec($ch);
$r = preg_replace_callback('/([\'"])([^"]+)\1/', 'call_back', $r);
preg_match_all('/(.*)\r\n/', $r, $matchs);
$fields = explode('.', $clist);
$count = count($matchs[0]);
$arrs = array();
for ($i = 1; $i < $count; $i++) {
$explode_arr = explode(',', $matchs[0][$i]);
$arr = array();
foreach ($fields as $key => $field) {
// vv THIS BELOW LINE IS THE LINE THAT IS INDICATED IN ERROR vv
$arr[$field] = urldecode($explode_arr[$key]);
}
$arrs[] = $arr;
}
return $arrs;
}
function call_back($matches) {
return urlencode($matches[0]);
}