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


PHP leuu函數代碼示例

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


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

示例1: trim

							<li>
								<?php 
            $pe = trim($vo['post_source']);
            ?>
                            	<?php 
            if (!empty($pe)) {
                ?>
<a href="<?php 
                echo $vo["post_source"];
                ?>
"  class="title" target="_blank">
                            	<?php 
            } else {
                ?>
<a href="<?php 
                echo leuu('article/index', array('id' => $vo['tid']));
                ?>
"  class="title" target="_blank"><?php 
            }
            ?>
								<?php 
            echo $vo["post_title"];
            ?>
</a>
							</li><?php 
        }
    }
} else {
    echo "";
}
?>
開發者ID:elinxer,項目名稱:hualilibrary,代碼行數:31,代碼來源:9d2fbf89393c5ed07a9f33871d86a275.php

示例2: UU

function UU($url = '', $vars = '', $suffix = true, $domain = false)
{
    return leuu($url, $vars, $suffix, $domain);
}
開發者ID:noikiy,項目名稱:luokeke2,代碼行數:4,代碼來源:function.php

示例3: UrlParameters

 private function UrlParameters($url = array())
 {
     unset($url[C('VAR_MODULE')]);
     unset($url[C('VAR_CONTROLLER')]);
     unset($url[C('VAR_ACTION')]);
     foreach ($url as $key => $val) {
         if ($key != $this->PageParam && $key != "_URL_") {
             $arg[$key] = $val;
         }
     }
     $arg[$this->PageParam] = '*';
     if ($this->Static) {
         //當啟用靜態地址,$this->PageLink傳入的是array,並且包含兩個 index,list
         /*
          * array(
          *    "index"=>"http://www.a.com/192.html",//這種是表示當前是首頁,無需加分頁1
          *    "list"=>"http://www.a.com/192-{page}.html",//這種表示分頁非首頁時啟用
          * )
          */
         if (is_array($this->PageLink)) {
             return str_replace('{page}', '*', $this->PageLink['list']);
         } else {
             return str_replace('{page}', '*', $this->PageLink);
         }
     } else {
         if ($this->searching) {
             $url = leuu(MODULE_NAME . "/" . CONTROLLER_NAME . "/" . ACTION_NAME) . "?" . http_build_query($arg);
         } else {
             $url = leuu(MODULE_NAME . "/" . CONTROLLER_NAME . "/" . ACTION_NAME, $arg);
         }
         return str_replace("%2A", "*", $url);
     }
 }
開發者ID:hiproz,項目名稱:ibv,代碼行數:33,代碼來源:Page.class.php

示例4: sp_get_menu_info

/**
*根據菜單id獲得菜單的詳細信息,可以整合進獲取菜單數據的方法(_sp_get_menu_datas)中。
*@param num $id  菜單id,每個菜單id
* @author 5iymt <1145769693@qq.com>
*/
function sp_get_menu_info($id, $navdata = false)
{
    if (empty($id) && $navdata) {
        //若菜單id不存在,且菜單數據存在。
        $nav = $navdata;
    } else {
        $nav_obj = M("Nav");
        $id = intval($id);
        $nav = $nav_obj->where("id={$id}")->find();
        //菜單數據
    }
    $href = htmlspecialchars_decode($nav['href']);
    $hrefold = $href;
    if (strpos($hrefold, "{")) {
        //序列 化的數據
        $href = unserialize(stripslashes($nav['href']));
        $default_app = strtolower(C("DEFAULT_MODULE"));
        $href = strtolower(leuu($href['action'], $href['param']));
        $g = C("VAR_MODULE");
        $href = preg_replace("/\\/{$default_app}\\//", "/", $href);
        $href = preg_replace("/{$g}={$default_app}&/", "", $href);
    } else {
        if ($hrefold == "home") {
            $href = __ROOT__ . "/";
        } else {
            $href = $hrefold;
        }
    }
    $nav['href'] = $href;
    return $nav;
}
開發者ID:xchz,項目名稱:MovieCMF,代碼行數:36,代碼來源:function.php

示例5: leuu

            ?>
<li style="height:25px;border-bottom:#b4b4b4 1px dashed;margin:6px;"><img src="/tpl/hualibootx/Public/images/tongzhi.png" width="15" height="15" />&nbsp;<a href="<?php 
            echo leuu('article/index', array('id' => $vo['tid']));
            ?>
" target="_blank"><?php 
            echo msubstr($vo["post_title"], 0, 20, 'utf-8', false);
            ?>
</a></li><?php 
        }
    }
} else {
    echo "";
}
?>
								                    	<li style="text-align:right;padding-right:20px;"><a href="<?php 
echo leuu('list/index', array('id' => get_new_cid($newtab[2])));
?>
" target="_blank"><img src="/tpl/hualibootx/Public/images/more.jpg" style="width:57px;height:15px;"/></a></li>
													</ul>
												</div>
												
											</div>
										</div><!--end-->
						                </header>
					            	</div>
					          	</div>
					          <div class="ctrl"></div>
					       </div>
				    	</div>
				  	</div>
				  	<!-- end -->
開發者ID:elinxer,項目名稱:hualilibrary,代碼行數:31,代碼來源:1f7ebafffae1466256df304d77c0f43d.php


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