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


PHP Uri::create_url方法代碼示例

本文整理匯總了PHP中Uri::create_url方法的典型用法代碼示例。如果您正苦於以下問題:PHP Uri::create_url方法的具體用法?PHP Uri::create_url怎麽用?PHP Uri::create_url使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Uri的用法示例。


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

示例1: render

">
<?php 
        echo render('_parts/member_profile', array('member' => !empty($related_member_table_name) ? $obj->{$related_member_table_name} : $obj, 'next_id' => $next_id, 'access_from' => Auth::check() ? 'member' : 'guest', 'is_list' => true, 'page_type' => 'list', 'display_type' => 'summary', 'is_simple_list' => $is_simple_list));
        ?>
	</div>
<?php 
    }
    ?>
</div>
<?php 
}
?>

<?php 
if ($next_id) {
    $gete_data_list = array();
    $gete_data_list['max_id'] = $next_id;
    if (!empty($since_id)) {
        $gete_data_list['since_id'] = $since_id;
    }
    $load_after_link_attr = array('data-get_data' => json_encode($gete_data_list));
    $href = IS_API ? '#' : Uri::create_url(Uri::string(), array('max_id' => $next_id));
    echo Html::anchor($href, icon_label('site.see_more', 'both', false, null, 'fa fa-'), array_merge($load_after_link_attr, $load_link_attr_default));
}
?>

<?php 
if (IS_API) {
    ?>
</body></html><?php 
}
開發者ID:uzura8,項目名稱:flockbird,代碼行數:31,代碼來源:member_list.php

示例2: render

        echo render('news::_parts/news_subinfo', array('news' => $news, 'tags' => $tags, 'is_simple_view' => true));
        ?>
	</div>

<?php 
    }
    ?>
</div>
<?php 
}
?>

<?php 
if (!empty($see_more_link)) {
    $anchor_text_default = icon_label('site.see_more', 'both', false, null, 'fa fa-');
    $href = Uri::create_url($see_more_link['uri']);
    $anchor_text = !empty($see_more_link['text']) ? $see_more_link['text'] : $anchor_text_default;
    $load_after_link_attr = array('class' => 'listMoreBox');
    echo Html::anchor($href, $anchor_text, $load_after_link_attr);
} elseif (!empty($next_page)) {
    ?>
<nav id="page-nav">
<?php 
    $uri = sprintf('news/api4site/list.html?page=%d', $next_page);
    if (!empty($category_name)) {
        $uri .= '&category=' . $category_name;
    }
    if (!empty($tag_string)) {
        $uri .= '&tag=' . $tag_string;
    }
    ?>
開發者ID:uzura8,項目名稱:flockbird,代碼行數:31,代碼來源:list.php

示例3: strim

if (Uri::check_current_is_base_path()) {
    ?>
website<?php 
} else {
    ?>
article<?php 
}
?>
">
<meta property="og:description" content="<?php 
echo !empty($common['description']) ? strim($common['description'], conf('view_params_default.ogp.trimWidth.body'), null, false, true) : FBD_HEADER_DESCRIPTION_DEFAULT;
?>
">
<meta property="og:url" content="<?php 
echo Uri::current();
?>
">
<meta property="og:image" content="<?php 
echo Uri::create_url(!empty($common['image']) ? $common['image'] : 'assets/img/ico/apple-touch-icon-144-precomposed.png', null, 'url');
?>
">
<meta property="og:site_name" content="<?php 
echo FBD_SITE_NAME;
?>
">
<meta property="og:email" content="<?php 
echo FBD_ADMIN_MAIL;
?>
">

開發者ID:uzura8,項目名稱:flockbird,代碼行數:29,代碼來源:site_meta_ogp.php


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