Esempio n. 1
0
function _do_insert_c_tmp_image($filename, $filepath)
{
    return db_image_insert_c_tmp_image($filename, $filepath);
}
Esempio n. 2
0
function image_insert_c_tmp_image($upfile_obj, $filename)
{
    if (!$upfile_obj) {
        return false;
    }
    $filepath = $upfile_obj['tmp_name'];
    $result = db_image_insert_c_tmp_image($filename, $filepath);
    if (!$result) {
        return false;
    }
    return $filename;
}