本文整理匯總了PHP中gcms::getMimeTypies方法的典型用法代碼示例。如果您正苦於以下問題:PHP gcms::getMimeTypies方法的具體用法?PHP gcms::getMimeTypies怎麽用?PHP gcms::getMimeTypies使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類gcms
的用法示例。
在下文中一共展示了gcms::getMimeTypies方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: elseif
if ($file_typies == '') {
$ret['error'] = 'DOWNLOAD_FILE_TYPIES_EMPTY';
$ret['input'] = 'config_file_typies';
$ret['ret_config_file_typies'] = 'DOWNLOAD_FILE_TYPIES_EMPTY';
} elseif ($error) {
$ret['error'] = 'DOWNLOAD_FILE_TYPIES_INVALID';
$ret['input'] = 'config_file_typies';
$ret['ret_config_file_typies'] = 'DOWNLOAD_FILE_TYPIES_INVALID';
} else {
// โหลด config ใหม่
$config = array();
if (is_file(CONFIG)) {
include CONFIG;
}
// ตรวจสอบความถูกต้องของ mimetype
$typies = gcms::getMimeTypies(explode(',', $file_typies));
if (sizeof($typies) == 0) {
$ret['error'] = 'GET_FILE_MIMETYPE_ERROR';
$ret['input'] = 'config_file_typies';
$ret['ret_config_file_typies'] = 'GET_FILE_MIMETYPE_ERROR';
} elseif (is_array($config['mimeTypes'])) {
$config['mimeTypes'] = array_merge($config['mimeTypes'], $typies);
} else {
$config['mimeTypes'] = $typies;
}
if (!isset($ret['error'])) {
if (isset($_POST['config_can_download'])) {
$config['download_can_download'] = gcms::getVars($_POST, 'config_can_download', '');
} else {
unset($config['download_can_download']);
}