判斷方法分為兩個步驟:
#第一步:找出資料庫中所有表名,表名得到的是二維陣列。
第二步:判斷表名是否存在二維陣列中。
程式碼範例:
$table_name =‘table’; $juge = $handle->createCommand("show tables ")->queryAll(); //下面的deep_in_array()方法是自己写的方法,判断是否存在值是否存在二维数组中,yii2中调用本类方法,可以去掉action $cun = $this->deep_in_array($table_name,$juge); if(!$cun){ echo json_encode("nodata"); return; }
//判断二维数组是否存在值 public function deep_in_array($value, $array) { foreach($array as $item) { if(!is_array($item)) { if ($item == $value) { return true; } else { continue; } } if(in_array($value, $item)) { return true; } else if($this->deep_in_array($value, $item)) { return true; } } return false; }
相關文章教學推薦:yii教學
以上是yii中如何判斷資料表是否存在於資料庫中的詳細內容。更多資訊請關注PHP中文網其他相關文章!