當前位置: 首頁>>代碼示例>>PHP>>正文


PHP murl函數代碼示例

本文整理匯總了PHP中murl函數的典型用法代碼示例。如果您正苦於以下問題:PHP murl函數的具體用法?PHP murl怎麽用?PHP murl使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了murl函數的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: msqdt_build

function msqdt_build($p, $o)
{
    req('msql');
    $ra['_menus_'] = explode(',', $o);
    $r = msql_read_b('', ses('msqdt'), '', '', $ra);
    $murl = sesm('murl', murl('users', '', ses('qb'), $p, ''));
    if ($r) {
        return draw_table($r, $murl, '');
    }
}
開發者ID:philum,項目名稱:cms,代碼行數:10,代碼來源:msqedit.php

示例2: fieldsFormDisplay

 public function fieldsFormDisplay($rid = 0)
 {
     global $_W;
     if (!empty($rid)) {
         $reply = CRUD::findUnique(CRUD::$table_sign, array(":rid" => $rid));
         $reply['starttime'] = date("Y-m-d  H:i", $reply['starttime']);
         $reply['endtime'] = date("Y-m-d  H:i", $reply['endtime']);
         $sin_serials = pdo_fetchall("select * from " . tablename(CRUD::$table_sign_serial) . " where sid=:sid order by day asc ", array(":sid" => $reply['id']));
         $links = pdo_fetchall("select * from " . tablename(CRUD::$table_sign_link) . " where sid=:sid order by sort asc ", array(":sid" => $reply['id']));
         $entryurl = murl('entry', array('do' => 'index', 'm' => 'wwx_sign')) . '&sid=' . $reply['id'];
     }
     load()->func('tpl');
     include $this->template('form');
 }
開發者ID:ChainBoy,項目名稱:wxfx,代碼行數:14,代碼來源:module.php

示例3: doWebDelete

 public function doWebDelete()
 {
     checklogin();
     global $_W, $_GPC;
     $id = intval($_GPC['id']);
     $rid = intval($_GPC['rid']);
     $sql = "SELECT id FROM " . tablename('superman_floor_award') . " WHERE `id`=:id";
     $row = pdo_fetch($sql, array(':id' => $id));
     if (empty($row)) {
         message('抱歉,獎品不存在或是已經被刪除!', '', 'error');
     }
     if (pdo_delete('superman_floor_award', array('id' => $id))) {
         message('刪除成功', murl('platform/reply/post', array('m' => 'superman_floor', 'rid' => $rid)), 'success');
     }
 }
開發者ID:eduNeusoft,項目名稱:weixin,代碼行數:15,代碼來源:site.php

示例4: module_entries

function module_entries($name, $types = array(), $args = null)
{
    $ts = array('rule', 'cover', 'menu', 'home', 'profile', 'shortcut', 'function');
    if (empty($types)) {
        $types = $ts;
    } else {
        $types = array_intersect($types, $ts);
    }
    $fields = implode("','", $types);
    $sql = 'SELECT * FROM ' . tablename('modules_bindings') . " WHERE `module`=:module AND `entry` IN ('{$fields}') ORDER BY eid ASC";
    $pars = array();
    $pars[':module'] = $name;
    $bindings = pdo_fetchall($sql, $pars);
    $entries = array();
    foreach ($bindings as $bind) {
        if (!empty($bind['call'])) {
            $site = WeUtility::createModuleSite($bind['module']);
            $ret = @$site->{$bind}['call']($args);
            if (is_array($ret)) {
                foreach ($ret as $et) {
                    $et['url'] .= '&__title=' . urlencode($et['title']);
                    $entries[$bind['entry']][] = array('title' => $et['title'], 'url' => $et['url'], 'from' => 'call');
                }
            }
        } else {
            if ($bind['entry'] == 'cover') {
                $url = wurl("platform/cover", array('eid' => $bind['eid']));
            }
            if ($bind['entry'] == 'menu') {
                $url = wurl("site/entry", array('eid' => $bind['eid']));
            }
            if ($bind['entry'] == 'rule') {
                $url = wurl("site/entry", array('eid' => $bind['eid'], 'id' => '{id}'));
            }
            if ($bind['entry'] == 'home') {
                $url = murl("entry", array('eid' => $bind['eid']));
            }
            if ($bind['entry'] == 'profile') {
                $url = murl("entry", array('eid' => $bind['eid']));
            }
            if ($bind['entry'] == 'shortcut') {
                $url = murl("entry", array('eid' => $bind['eid']));
            }
            $entries[$bind['entry']][] = array('title' => $bind['title'], 'url' => $url, 'from' => 'define');
        }
    }
    return $entries;
}
開發者ID:ruige123456,項目名稱:dataMining,代碼行數:48,代碼來源:module.mod.php

示例5: message

    if (empty($eid)) {
        message('訪問錯誤');
    }
    $sql = 'SELECT * FROM ' . tablename('modules_bindings') . ' WHERE `eid`=:eid';
    $pars = array();
    $pars[':eid'] = $eid;
    $entry = pdo_fetch($sql, $pars);
    if (empty($entry) || $entry['entry'] != 'cover') {
        message('訪問錯誤');
    }
    load()->model('module');
    $module = module_fetch($entry['module']);
    if (empty($module)) {
        message('訪問錯誤');
    }
    $entry['url'] = murl('entry', array('do' => $entry['do'], 'm' => $entry['module']));
    $cover['title'] = $entry['title'];
    if ($module['issolution']) {
        $solution = $module;
        define('FRAME', 'solution');
    } else {
        define('FRAME', 'ext');
        $types = module_types();
        define('ACTIVE_FRAME_URL', url('home/welcome/ext', array('m' => $entry['module'])));
    }
    $frames = buildframes(array(FRAME), $entry['module']);
    $frames = $frames[FRAME];
}
$sql = "SELECT * FROM " . tablename('cover_reply') . ' WHERE `module` = :module AND `do` = :do AND uniacid = :uniacid AND multiid = :multiid';
$pars = array();
$pars[':module'] = $entry['module'];
開發者ID:hahamy,項目名稱:we7,代碼行數:31,代碼來源:cover.ctrl.php

示例6: url

function url($segment, $params = array(), $noredirect = false)
{
    return murl($segment, $params, $noredirect);
}
開發者ID:keycoolkui,項目名稱:weixinfenxiao,代碼行數:4,代碼來源:common.func.php

示例7: site_article

function site_article($params = array())
{
    global $_GPC, $_W;
    extract($params);
    $pindex = max(1, intval($_GPC['page']));
    if (!isset($limit)) {
        $psize = 10;
    } else {
        $psize = intval($limit);
        $psize = max(1, $limit);
    }
    $result = array();
    $condition = " WHERE uniacid = '{$_W['uniacid']}'";
    if (!empty($cid)) {
        $category = pdo_fetch("SELECT parentid FROM " . tablename('site_category') . " WHERE id = '{$cid}'");
        if (!empty($category['parentid'])) {
            $condition .= " AND ccate = '{$cid}'";
        } else {
            $condition .= " AND pcate = '{$cid}'";
        }
    }
    if ($iscommend == 'true') {
        $condition .= " AND iscommend = '1'";
    }
    if ($ishot == 'true') {
        $condition .= " AND ishot = '1'";
    }
    $sql = "SELECT * FROM " . tablename('site_article') . $condition . ' ORDER BY displayorder DESC, id DESC';
    $result['list'] = pdo_fetchall($sql . " LIMIT " . ($pindex - 1) * $psize . ',' . $psize);
    $total = pdo_fetchcolumn('SELECT COUNT(*) FROM ' . tablename('site_article') . $condition);
    $result['pager'] = pagination($total, $pindex, $psize);
    if (!empty($result['list'])) {
        foreach ($result['list'] as &$row) {
            if (empty($row['linkurl'])) {
                $row['linkurl'] = murl('site/site/detail', array('id' => $row['id'], 'uniacid' => $_W['uniacid']));
            }
            $row['thumb'] = tomedia($row['thumb']);
        }
    }
    return $result;
}
開發者ID:hahamy,項目名稱:we7,代碼行數:41,代碼來源:template.func.php

示例8: init

 function init($baseinfo)
 {
     if (empty($baseinfo['logo_url'])) {
         return error(-1, '商戶logo不能為空');
     }
     if (empty($baseinfo['brand_name'])) {
         return error(-1, '商戶名稱不能為空');
     }
     empty($baseinfo['code_type']) && ($baseinfo['code_type'] = 1);
     $baseinfo['code_type'] = $this->code_types[$baseinfo['code_type']];
     if (empty($baseinfo['title'])) {
         return error(-1, '卡券標題不能為空');
     }
     empty($baseinfo['color']) && ($baseinfo['color'] = 'Color010');
     if (empty($baseinfo['notice'])) {
         return error(-1, '操作提示不能為空');
     }
     if (empty($baseinfo['service_phone'])) {
         return error(-1, '客服電話不能為空');
     }
     if (empty($baseinfo['description'])) {
         return error(-1, '使用須知不能為空');
     }
     if (empty($baseinfo['time_type'])) {
         return error(-1, '使用期限不能為空');
     } else {
         if ($baseinfo['time_type'] == 1) {
             if (!empty($baseinfo['time_limit[start]'])) {
                 $baseinfo['begin_timestamp'] = strtotime($baseinfo['time_limit[start]']);
                 $baseinfo['end_timestamp'] = strtotime($baseinfo['time_limit[end]']);
             } else {
                 return error(-1, '使用期限限製錯誤');
             }
         } else {
             if (!empty($baseinfo['limit'])) {
                 $baseinfo['fixed_begin_term'] = intval($baseinfo['deadline']);
                 $baseinfo['fixed_term'] = intval($baseinfo['limit']);
             } else {
                 return error(-1, '使用期限限製錯誤');
             }
         }
     }
     $baseinfo['quantity'] = intval($baseinfo['quantity']);
     if (!$baseinfo['quantity']) {
         return error(-1, '卡券庫存不能為空或無限製');
     }
     $this->base_info['logo_url'] = urlencode($baseinfo['logo_url']);
     $this->base_info['brand_name'] = urlencode($baseinfo['brand_name']);
     $this->base_info['code_type'] = $baseinfo['code_type'];
     $this->base_info['title'] = urlencode($baseinfo['title']);
     $this->base_info['sub_title'] = urlencode($baseinfo['sub_title']);
     $this->base_info['color'] = $baseinfo['color'];
     $this->base_info['notice'] = urlencode($baseinfo['notice']);
     $this->base_info['service_phone'] = urlencode($baseinfo['service_phone']);
     $this->base_info['description'] = urlencode($baseinfo['description']);
     if ($baseinfo['time_type'] == 1) {
         $this->base_info['date_info'] = array('type' => 1, 'begin_timestamp' => $baseinfo['begin_timestamp'], 'end_timestamp' => $baseinfo['end_timestamp']);
     } else {
         $this->base_info['date_info'] = array('type' => 2, 'fixed_term' => $baseinfo['fixed_term'], 'fixed_begin_term' => $baseinfo['fixed_begin_term']);
     }
     $this->base_info['sku'] = array('quantity' => $baseinfo['quantity']);
     $this->base_info['get_limit'] = intval($baseinfo['get_limit']);
     $this->base_info['can_share'] = intval($baseinfo['can_share']) ? true : false;
     $this->base_info['can_give_friend'] = intval($baseinfo['can_give_friend']) ? true : false;
     if ($baseinfo['is_location'] && $baseinfo['location-select']) {
         $baseinfo['location'] = explode('-', $baseinfo['location-select']);
         if (!empty($baseinfo['location'])) {
             $this->base_info['location_id_list'] = $baseinfo['location'];
         }
     }
     $this->base_info['custom_url_name'] = urlencode('立即使用');
     $this->base_info['custom_url'] = urlencode(murl('wechat/card/use', array(), true, true));
     $this->base_info['custom_url_sub_title'] = '';
     if (!empty($baseinfo['promotion_url_name']) && !empty($baseinfo['promotion_url'])) {
         $this->base_info['promotion_url_name'] = urlencode($baseinfo['promotion_url_name']);
         $this->base_info['promotion_url'] = urlencode($baseinfo['promotion_url']);
         $this->base_info['promotion_url_sub_title'] = urlencode($baseinfo['promotion_url_sub_title']);
     }
     return $this->base_info;
 }
開發者ID:aspnmy,項目名稱:weizan,代碼行數:80,代碼來源:coupon.class.php

示例9: json_decode

 $params = json_decode(html_entity_decode(urldecode($params)), true);
 if (empty($params)) {
     message('請您先設計手機端頁麵.', '', 'error');
 }
 $page = $params[0];
 $html = htmlspecialchars_decode($_GPC['wapeditor']['html'], ENT_QUOTES);
 $data = array('uniacid' => $_W['uniacid'], 'multiid' => '0', 'title' => $page['params']['title'], 'description' => $page['params']['description'], 'type' => 3, 'status' => 1, 'params' => json_encode($params), 'html' => $html, 'createtime' => TIMESTAMP);
 $id = pdo_fetchcolumn("SELECT id FROM " . tablename('site_page') . " WHERE uniacid = :uniacid AND type = '3'", array(':uniacid' => $_W['uniacid']));
 if (empty($id)) {
     pdo_insert('site_page', $data);
     $id = pdo_insertid();
 } else {
     pdo_update('site_page', $data, array('id' => $id));
 }
 if (!empty($page['params']['keyword'])) {
     $cover = array('uniacid' => $_W['uniacid'], 'title' => $page['params']['title'], 'keyword' => $page['params']['keyword'], 'url' => murl('mc/home', array(), true, false), 'description' => $page['params']['description'], 'thumb' => $page['params']['cover'], 'module' => 'mc');
     site_cover($cover);
 }
 $nav = json_decode(html_entity_decode(urldecode($_GPC['wapeditor']['nav'])), true);
 if (!empty($nav)) {
     $ids = array(0);
     foreach ($nav as $row) {
         $data = array('uniacid' => $_W['uniacid'], 'name' => $row['name'], 'position' => 2, 'url' => $row['url'], 'icon' => '', 'css' => iserializer($row['css']), 'status' => 1, 'displayorder' => 0);
         if (!empty($row['id'])) {
             pdo_update('site_nav', $data, array('id' => $row['id']));
         } else {
             pdo_insert('site_nav', $data);
             $row['id'] = pdo_insertid();
         }
         $ids[] = $row['id'];
     }
開發者ID:eduNeusoft,項目名稱:weixin,代碼行數:31,代碼來源:editor.ctrl.php

示例10: sha1

        $signature_tmp = sha1(implode($data));
        if ($signature_tmp != $signature) {
            $error_signature = 1;
        }
        $record = pdo_get('coupon_record', array('acid' => $_W['acid'], 'card_id' => $card_id, 'code' => $code));
    }
    if (checksubmit()) {
        $password = trim($_GPC['password']);
        $clerk = pdo_get('activity_coupon_password', array('uniacid' => $_W['uniacid'], 'password' => $password));
        if (empty($clerk)) {
            message('店員密碼錯誤');
        }
        $status = $coupon->ConsumeCode(array('code' => $code['code']));
        if (is_error($status)) {
            message($status['message']);
        }
        pdo_update('coupon_record', array('status' => 3, 'clerk_id' => $clerk['id'], 'clerk_name' => $clerk['name']), array('acid' => $_W['acid'], 'card_id' => $card_id, 'openid' => $openid, 'code' => $code));
        message('核銷微信卡券成功', url('mc/home'), 'success');
    }
}
if ($do == 'qr') {
    require_once '../framework/library/qrcode/phpqrcode.php';
    $errorCorrectionLevel = "L";
    $matrixPointSize = "5";
    $id = intval($_GPC['id']);
    $code = intval($_GPC['code']);
    $url = murl('clerk/wechat', array('uid' => $_W['member']['uid'], 'id' => $id, 'code' => $code), false, true);
    QRcode::png($url, false, $errorCorrectionLevel, $matrixPointSize);
    exit;
}
template('wechat/card');
開發者ID:noikiy,項目名稱:mygit,代碼行數:31,代碼來源:card.ctrl.php

示例11: tiaozhuan

                }
            }
        });
    }
    function tiaozhuan(url){
        window.location.href=url;
    }

    //點讚功能,ajax方法
    function likeAjax(){
        var mid = $('#mid').val();
        var cid = $('#cid').val();
        $.ajax({
            "type": "post",
            "url": "<?php 
echo murl('entry//like', array('m' => 'amouse_ecard'), true);
?>
",
            "data": {"mid": mid, "cid": cid},
            "dataType": "json",
            "success": function(data){
                if(data.success){
                    if(data.status == 1){
                        $.flytip("點讚成功!");
                        document.getElementById('zan').innerHTML=data.zan;
                        //setTimeout(tiaozhuan(data.guanzhuUrl),30000);
                    }if(data.status == 0){
                        $.flytip("您還沒有建立微名片,馬上為您跳轉到幫助鏈接");
                        setTimeout("tiaozhuan('"+data.guanzhuUrl+"')",3000)
                    }if(data.status == 2){
                        $.flytip("點讚失敗,可能是網絡有問題?");
開發者ID:nsoff,項目名稱:wdlcms,代碼行數:31,代碼來源:2_info_view.tpl.php

示例12: ChooseCard

    public function ChooseCard($card_id)
    {
        $acid = $this->account['acid'];
        if (empty($card_id)) {
            return error(-1, '卡券不存在');
        }
        $time = TIMESTAMP;
        $randstr = random(8);
        $sign = array($card_id, $time, $randstr, $this->account['key']);
        $signature = $this->SignatureCard($sign);
        if (is_error($signature)) {
            return $signature;
        }
        $url = murl("wechat/pay/card");
        return <<<EOF
\t\t\twx.ready(function(){
\t\t\t\twx.chooseCard({
\t\t\t\t\tshopId: '',
\t\t\t\t\tcardType: '',
\t\t\t\t\tcardId:'{$card_id}',
\t\t\t\t\ttimestamp:{$time},
\t\t\t\t\tnonceStr:'{$randstr}',
\t\t\t\t\tsignType:'SHA1',
\t\t\t\t\tcardSign:'{$signature}',
\t\t\t\t\tsuccess: function(res) {
\t\t\t\t\t\tif(res.errMsg == 'chooseCard:ok') {
\t\t\t\t\t\t\teval("var rs = " + res.cardList);
\t\t\t\t\t\t\t\$.post('{$url}', {'card_id':rs[0].card_id}, function(data){
\t\t\t\t\t\t\t\tvar data = \$.parseJSON(data);
\t\t\t\t\t\t\t\tif(!data.errno) {
\t\t\t\t\t\t\t\t\tvar card = data.error;
\t\t\t\t\t\t\t\t\tif(card.type == 'discount') {

\t\t\t\t\t\t\t\t\t}
\t\t\t\t\t\t\t\t} else {
\t\t\t\t\t\t\t\t\tu.message('卡券不存在', '', 'error');
\t\t\t\t\t\t\t\t}
\t\t\t\t\t\t\t});
\t\t\t\t\t\t} else {
\t\t\t\t\t\t\tu.message('使用卡券失敗', '', 'error');
\t\t\t\t\t\t}
\t\t\t\t\t}
\t\t\t\t});
\t\t\t});
EOF;
    }
開發者ID:7demo,項目名稱:we7,代碼行數:46,代碼來源:coupon.class.php

示例13: pdo_fetchall

                $alist = pdo_fetchall("SELECT * FROM " . tablename('fineness_article') . " WHERE weid={$weid} AND ccate={$aid}  ORDER BY displayorder ASC limit 8 ");
                if ($alist) {
                    foreach ($alist as $par) {
                        $reply2['title'] = $par['title'];
                        $reply2['description'] = $par['description'];
                        $reply2['thumb'] = $par['thumb'];
                        $reply2['url'] = murl('entry/module/detail', array('m' => 'amouse_article', 'id' => $par[id]));
                        $reply2['rid'] = $rid;
                        pdo_insert('news_reply', $reply2);
                    }
                } else {
                    $reply['title'] = $_GPC['cname'];
                    $reply['description'] = $_GPC['description'];
                    $reply['thumb'] = $_GPC['thumb'];
                    $reply['displayorder'] = $_GPC['displayorder'];
                    $reply['url'] = murl('entry/module/index', array('m' => 'amouse_article', 'cid' => $aid));
                    pdo_insert('news_reply', $reply);
                }
            }
        }
        message('更新分類成功!', $this->createWebUrl('category', array('do' => 'display')), 'success');
    }
} elseif ($op == 'fetch') {
    $category = pdo_fetchall("SELECT id, name FROM " . tablename('fineness_article_category') . " WHERE parentid = '" . intval($_GPC['parentid']) . "' ORDER BY id ASC, displayorder ASC, id ASC ");
    message($category, '', 'ajax');
} elseif ($op == 'delete') {
    load()->func('file');
    $id = intval($_GPC['id']);
    pdo_delete('fineness_article_category', array('id' => $id));
    message('分類刪除成功!', $this->createWebUrl('category', array('do' => 'display')), 'success');
}
開發者ID:eduNeusoft,項目名稱:weixin,代碼行數:31,代碼來源:category.inc.php

示例14: sendmessage

    public function sendmessage($content, $openid)
    {
        global $_W, $_GPC;
        $weid = $_W['weid'];
        $cfg = $this->module['config'];
        $appid = $cfg['appid'];
        $secret = $cfg['secret'];
        $img = $_W['attachurl'] . $cfg['kefuimg'];
        $id = $_W['openid'];
        //當前粉絲$openid為發送者
        $res = $this->getusers($weid, $id);
        load()->classs('weixin.account');
        $accObj = WeixinAccount::create($_W['account']['acid']);
        $access_token = $accObj->fetch_token();
        $token2 = $access_token;
        $title = $res['nickname'] . '給你發來新消息了!';
        $fans = pdo_fetch('SELECT salt,acid,openid FROM ' . tablename('mc_mapping_fans') . ' WHERE uniacid = :uniacid AND openid = :openid', array(':uniacid' => $weid, ':openid' => $openid));
        $pass['time'] = TIMESTAMP;
        $pass['acid'] = $fans['acid'];
        $pass['openid'] = $fans['openid'];
        $pass['hash'] = md5("{$fans['openid']}{$pass['time']}{$fans['salt']}{$_W['config']['setting']['authkey']}");
        $auth = base64_encode(json_encode($pass));
        $vars = array();
        $vars['__auth'] = $auth;
        $vars['forward'] = base64_encode($this->createMobileUrl('hitmail', array('toname' => $res['nickname'], 'toopenid' => $id)));
        $url2 = $_W['siteroot'] . 'app/' . murl('auth/forward', $vars);
        $data = '{
										"touser":"' . $openid . '",
										"msgtype":"news",
										"news":{
											"articles": [
											 {
												 "title":"' . $title . '",
												 "description":"' . $title . '",
												 "url":"' . $url2 . '",
												 "picurl":"' . $img . '",
											 }
											 ]
										}
									}';
        $url = "https://api.weixin.qq.com/cgi-bin/message/custom/send?access_token=" . $token2;
        load()->func('communication');
        $it = ihttp_post($url, $data);
    }
開發者ID:eduNeusoft,項目名稱:weixin,代碼行數:44,代碼來源:site.php

示例15: message

        message('訪問錯誤');
    }
    $sql = 'SELECT * FROM ' . tablename('modules_bindings') . ' WHERE `eid`=:eid';
    $pars = array();
    $pars[':eid'] = $eid;
    $entry = pdo_fetch($sql, $pars);
    if (empty($entry) || $entry['entry'] != 'cover') {
        message('訪問錯誤');
    }
    load()->model('module');
    $module = module_fetch($entry['module']);
    if (empty($module)) {
        message('訪問錯誤');
    }
    $entry['url'] = murl('entry', array('do' => $entry['do'], 'm' => $entry['module']));
    $entry['url_show'] = murl('entry', array('do' => $entry['do'], 'm' => $entry['module']), true, true);
    $cover['title'] = $entry['title'];
    define('FRAME', 'ext');
    $types = module_types();
    if (!$GLOBALS['ext_type']) {
        define('ACTIVE_FRAME_URL', url('platform/cover', array('eid' => $entry['eid'])));
    } else {
        echo 8;
        define('ACTIVE_FRAME_URL', url('home/welcome/ext', array('m' => $entry['module'])));
    }
    $frames = buildframes(array(FRAME));
    $frames = $frames[FRAME];
}
$sql = "SELECT * FROM " . tablename('cover_reply') . ' WHERE `module` = :module AND `do` = :do AND uniacid = :uniacid';
$pars = array();
$pars[':module'] = $entry['module'];
開發者ID:zhang19960118,項目名稱:html11,代碼行數:31,代碼來源:cover.ctrl.php


注:本文中的murl函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。