我是 CodeIgniter 的新手,我有这个功能,我在多个模型中使用。
// Returns TRUE if the array of values supplied
// each correspond to a column in the database table.
// Else returns the value of the bad column.
private function _columns_exist( $columns, $table ) {
foreach( $columns as $key => $value ) {
if( !$this->db->field_exists( $key, $table ) ) {
return $key;
}
}
return TRUE;
}
什么被认为是编写一次函数并从许多不同文件中重用它的正确方法?
我想为这个功能创建一个完整的库吗?