本文整理汇总了PHP中cs_files函数的典型用法代码示例。如果您正苦于以下问题:PHP cs_files函数的具体用法?PHP cs_files怎么用?PHP cs_files使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了cs_files函数的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: cs_translate
<?php
// ClanSphere 2010 - www.clansphere.net
// $Id$
$cs_lang = cs_translate('maps');
$files_gl = cs_files();
$data = array();
$options = cs_sql_option(__FILE__, 'maps');
$img_filetypes = array('gif', 'jpg', 'png');
if (empty($_GET['id']) and empty($_POST['submit'])) {
$data['maps']['action'] = $cs_lang['edit'];
$data['maps']['link'] = cs_url('maps', 'manage');
echo cs_subtemplate(__FILE__, $data, 'maps', 'no_selection');
} else {
if (!empty($_POST['submit'])) {
$error = '';
if (empty($_POST['maps_name'])) {
$error .= cs_html_br(1) . '- ' . $cs_lang['no_name'];
}
if (empty($_POST['games_id'])) {
$error .= cs_html_br(1) . '- ' . $cs_lang['no_game'];
}
$img_size = empty($files_gl['picture']['tmp_name']) ? 0 : getimagesize($files_gl['picture']['tmp_name']);
if (!empty($files_gl['picture']['tmp_name']) and empty($img_size) or $img_size[2] > 3) {
$error .= cs_html_br(1) . '- ' . $cs_lang['ext_error'];
} elseif (!empty($files_gl['picture']['tmp_name'])) {
switch ($img_size[2]) {
case 1:
$extension = 'gif';
break;
case 2: