select_context() protected method

protected select_context ( $table, $join, &$columns = null, $where = null, $column_fn = null )
コード例 #1
0
ファイル: Medoo.php プロジェクト: larryli/ipv4-medoo
 /**
  * @param $table
  * @param $join
  * @param null $columns
  * @param null $where
  * @param null $column_fn
  * @return string
  */
 protected function select_context($table, $join, &$columns = null, $where = null, $column_fn = null)
 {
     return parent::select_context($this->prefix . $table, $join, $columns, $where, $column_fn);
 }