本文整理汇总了PHP中headers::action方法的典型用法代码示例。如果您正苦于以下问题:PHP headers::action方法的具体用法?PHP headers::action怎么用?PHP headers::action使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类headers
的用法示例。
在下文中一共展示了headers::action方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _addsection
function _addsection()
{
$array = array('section_name' => strip_tags(params::get('section_name')), 'section_desc' => params::get('section_desc'));
db::table('catalog_sections');
db::smartInsert($array);
$section_id = mysql_insert_id();
$dir = IMAGES_ROOT . 'sections/';
@mkdir(IMAGES_ROOT);
@mkdir($dir);
if (!empty($_FILES['section_photo']['name'])) {
$file = $dir . $section_id . '.jpg';
copy($_FILES['section_photo']['tmp_name'], $file);
images::src($file);
images::thumb($file);
images::square(78);
}
headers::action('catalog', 'main', 'sections');
}
示例2: _addsection
function _addsection()
{
$array = array('section_name' => strip_tags(params::get('section_name')), 'section_year' => params::get('section_year'), 'section_view' => params::isCheck('section_view'));
db::table('info_sections');
db::smartInsert($array);
$section_id = mysql_insert_id();
headers::action('info', 'main', 'sections');
}
示例3: _addGroup
function _addGroup()
{
$array = ini::parse(SYS_ROOT . 'conf/admin/groups.ini');
$group_id = arrays::maxKey($array);
$group_id++;
self::addGroupForce($group_id);
headers::action('system', 'users', 'groups');
}