本文整理匯總了PHP中helper::from_mobile方法的典型用法代碼示例。如果您正苦於以下問題:PHP helper::from_mobile方法的具體用法?PHP helper::from_mobile怎麽用?PHP helper::from_mobile使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類helper
的用法示例。
在下文中一共展示了helper::from_mobile方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: Logs
$l_obj = new Logs();
if (function_exists("m__" . $_GET['m'])) {
call_user_func("m__" . $_GET['m']);
}
$time_end = helper::getmicrotime();
//主程序執行時間,如果要包含模板的輸出時間,則可以調用該靜態時間方法單獨計算
$page['data_fill_time'] = $time_end - $time_start;
//執行時間
/**
* 模板載入選擇
* 模板頁麵為PHP+HTML混合編寫,如果模板頁麵中也有區塊函數,模板函數以 tpl__ 為前綴
*/
//判斷終端,然後選擇需要的模板
$template = "pc";
//自動判斷是否為手機端,不是都到pc端
$template = helper::from_mobile() ? 'wap' : 'pc';
$tpl_filename = str_replace('\\', '', str_replace(dirname(__FILE__), '', __FILE__));
$tpl_filename = str_replace('/', '', $tpl_filename);
require dirname(__FILE__) . '/' . $template . '/tpl_' . $tpl_filename;
function m__login()
{
global $a_obj, $l_obj;
$post = $_POST;
if (empty($post['aname'])) {
die('{"code":"100","msg":"用戶名不能為空"}');
}
if (empty($post['apass'])) {
die('{"code":"100","msg":"密碼不能為空"}');
}
//驗證碼驗證
$code = md5(strtoupper($post['code']));
示例2: form_auto
/**
* 自動表單
*
* @param $form 表單數組
*/
function form_auto($form, $title)
{
$type = $form['form_type'];
$name = $form['field'];
$form_value = $form['form_value'];
$html = '';
if ($type == 'text') {
// 文本框
$html .= '<input placeholder="' . $title . '" type="text" class="ipt" id="' . $name . '" name="' . $name . '" value="' . $form_value . '">';
}
if ($type == 'textarea') {
// 多行文本框
$html .= '<textarea placeholder="' . $title . '" class="ipt" style="height:50px;" id="' . $name . '" name="' . $name . '">' . $form_value . '</textarea>';
}
if ($type == 'checkbox') {
// 複選框
$fv = explode('|', $form_value);
foreach ($fv as $a) {
$html .= ' <label><input class="sel_more_' . $name . '" type="checkbox" value="' . $a . '" id="' . $name . '" name="' . $name . '"> ' . $a . '</label>';
}
}
if ($type == 'radio') {
// 單選框
$fv = explode('|', $form_value);
foreach ($fv as $a) {
$html .= ' <label><input type="radio" value="' . $a . '" id="' . $name . '" name="' . $name . '"> ' . $a . '</label>';
}
}
if ($type == 'select') {
// 下拉框
$fv = explode('|', $form_value);
$html .= '<select id="' . $name . '" name="' . $name . '">';
foreach ($fv as $a) {
$html .= '<option value="' . $a . '">' . $a . '</option>';
}
$html .= '</select>';
}
if ($type == 'date') {
// 日期選擇
// $html .='<div style="position:absolute;">';
$html .= '<input placeholder="' . $title . '" type="text" class="ipt" id="' . $name . '" name="' . $name . '" value="" onclick="new Calendar().show(this);">';
// $html .='</div>';
}
if ($type == 'editor') {
// 編輯框
if (helper::from_mobile()) {
$html .= '<textarea placeholder="' . $title . '" class="ipt" style="height:50px;" id="' . $name . '" name="' . $name . '">' . $form_value . '</textarea>';
} else {
$html .= '<div style="position:relative;margin-top:10px;">';
$html .= '<span class="upbtn_box" id="upbtn_box_' . $name . '"><script>C.ckeditor.init("#upbtn_box_' . $name . '","' . $name . '");</script></span>';
$html .= '<textarea placeholder="' . $title . '" id="' . $name . '" name="' . $name . '" style="display:none;"></textarea>';
$html .= '<script type="text/javascript">';
$html .= 'if(CKEDITOR.instances["' . $name . '"]){CKEDITOR.remove(CKEDITOR.instances["' . $name . '"]);} var ' . $name . ' = CKEDITOR.replace( "' . $name . '",{height:100,width:720,skin:"v2",menu_subMenuDelay:0,toolbar : ckeditor_toolbar});';
$html .= '</script>';
$html .= '</div>';
}
}
if ($type == 'upload') {
// 上傳框
$html .= '<div style="float:left;margin-right:10px;"><input type="text" class="ipt" id="' . $name . '" name="' . $name . '" value=""></div>';
$html .= '<div style="float:left;" id="box_' . $name . '"><script>C.create_upload_iframe(\'{"inner_box":"#box_' . $name . '","func":"callback_upload_thumb","vid":"' . $name . '","thumb":{"width":"300","height":"300"},"water":1}\');</script></div>';
$html .= '<div style="float:left;margin-left:10px;"><span id="thumb_' . $name . '"></span></div>';
}
return $html;
}
示例3: assign_tpl_admin
function assign_tpl_admin($tpl, $dir = '')
{
$template = helper::from_mobile() ? 'wap' : 'pc';
$tpl_file = ROOT_PATH . '/' . ADMIN_PATH . '/' . $template . '/tpl_' . $tpl;
if ($dir != '') {
$tpl_file = ROOT_PATH . '/' . ADMIN_PATH . '/' . $dir . '/tpl_' . $tpl;
}
if (!file_exists($tpl_file)) {
$template = 'pc';
$tpl_file = ROOT_PATH . '/' . ADMIN_PATH . '/' . $template . '/tpl_' . $tpl;
//die($tmeplate);
}
return array($template, $tpl_file);
}
示例4: str_replace
$plugins_path = str_replace('\\', '/', $plugins_path);
$plugins_path = substr($plugins_path, strpos($plugins_path, 'plugins/'), strlen($plugins_path));
$p = isset($_GET['p']) ? $_GET['p'] : 1;
//分頁頁碼
if (!is_numeric($p)) {
$p = 1;
}
//頁麵動作 model 分支選擇,動作函數寫在文件末尾,全部以前綴 m__ 開頭
$_GET['m'] = isset($_GET['m']) ? $_GET['m'] : 'login';
if (function_exists("m__" . $_GET['m'])) {
call_user_func("m__" . $_GET['m']);
}
//組合模板文件夾路徑,默認為PC模板
$from_template = 'pc';
$from_mobile = TEMPLATE;
if (WAP_OPEN == '1' && helper::from_mobile()) {
//自動識別為手機瀏覽器,使用WAP模板
$from_template = 'wap';
}
if (WAP_URL != '' && 'http://' . $_SERVER['HTTP_HOST'] == WAP_URL) {
// WAP獨立域名瀏覽
$from_template = 'wap';
}
if (substr($_SERVER['HTTP_HOST'], 0, 2) == 'm.') {
// 手機客戶端
$from_template = 'm';
}
$tpl = isset($_GET['tpl']) ? $_GET['tpl'] : 'index';
if ($tpl == 'index') {
if (isset($_SESSION['uid']) && isset($_SESSION['uname'])) {
act_msg("index.php?tpl=ucenter", "你已經是登陸狀態");
示例5: array
}
}catch(e){alert(e.message+data);}
});
}catch(e){alert(e.message);}
}
</script>
<?php
if (!isset($msg_show_opacty) || $msg_show_opacty == 1) {
?>
<div id="gov_message" style="display:none"><?php
}
?>
<form method="post" action="" id="form_gov_message">
<table class="tb3">
<?php
if (isset($msg_show_opacty) && $msg_show_opacty == 0 && helper::from_mobile()) {
show_extern_html_wap($rs['list'][0]['extern_id'], array('nick_name', 'phone', 'content', 'qq', 'gender'));
echo '<tr><td> <a onclick="save_message();" id="subtn" class="but" href="javascript:void(0);">給我留言</a></td></tr>';
} else {
show_extern_html($rs['list'][0]['extern_id'], array('nick_name', 'phone', 'content', 'qq', 'gender'));
echo '<tr><td></td><td><a onclick="save_message();" id="subtn" class="but" href="javascript:void(0);">給我留言</a></td></tr>';
}
?>
</table>
</form>
<?php
if (!isset($msg_show_opacty) || $msg_show_opacty == 1) {
?>
</div><?php
}