本文整理汇总了PHP中xs_exit函数的典型用法代码示例。如果您正苦于以下问题:PHP xs_exit函数的具体用法?PHP xs_exit怎么用?PHP xs_exit使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了xs_exit函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: elseif
$content_type = '';
if (empty($_GET['get_content'])) {
if ($ext === '.gif') {
$content_type = 'image/gif';
} elseif ($ext === '.jpg' || $ext === '.jpe' || $ext === 'jpeg') {
$content_type = 'image/jpeg';
} elseif ($ext === '.png') {
$content_type = 'image/png';
} else {
$do_download = true;
}
} else {
$do_download = true;
}
xs_download_file($do_download ? basename($f) : '', $contents, $content_type);
xs_exit();
}
} else {
$list_data[$data['filename']] = $data;
}
$files[] = $data['filename'];
}
}
if (empty($data['filename']) && $is_file) {
$pos = strlen($str);
} else {
$pos += floor(($data['size'] + 511) / 512) * 512;
if ($is_file) {
$items[] = $data;
}
}
示例2: xs_message
function xs_message($title, $message)
{
global $template;
$template->set_filenames(array('msg' => XS_TPL_PATH . 'message.tpl'));
$template->assign_vars(array('MESSAGE_TITLE' => $title, 'MESSAGE_TEXT' => $message));
$template->pparse('msg');
xs_exit();
}