本文整理汇总了PHP中Uri::url方法的典型用法代码示例。如果您正苦于以下问题:PHP Uri::url方法的具体用法?PHP Uri::url怎么用?PHP Uri::url使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Uri
的用法示例。
在下文中一共展示了Uri::url方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: get_secret_url
/**
* Returns the url used to access the rss for a specific user.
* Note that the url is protected by token
*
* @return string
*/
public function get_secret_url($action = 'display', $format = 'rss')
{
$user_id = $this->get_user_id();
$token = $this->ensure_user_token();
$params = array('user_id' => $user_id, 'token' => $token, 'format' => $format, 'action' => $action);
return Uri::url('main/course_notice/index.php', $params);
}
示例2: format_calendar_event
protected function format_calendar_event($result, $item)
{
$params = Uri::course_params($item->code, $item->session_id, $item->to_group_id);
// . 'calendar/agenda.php?cidReq=' . $item->code . '#' . $item->id;
$result->link = Uri::url('main/calendar/agenda.php', $params);
//$result->description .= '<br/><i>' . $course->title . ' > ' . get_lang('Agenda') . ' > ' . $item->title . '</i>';
}
示例3: url
/**
* Returns a full url from local/absolute path and parameters.
* Append the root as required for relative urls.
*
* @param string $path
* @param array $params
* @return string
*/
public static function url($path = '', $params = array(), $html = true)
{
return Uri::url($path, $params, $html);
}
示例4: download_url
/**
* Returns a temporary url to download files and/or folders.
*
* @param string|array $ids
* @return string
*/
public static function download_url($ids, $tool)
{
$ids = is_array($ids) ? implode(',', $ids) : $ids;
$params = Uri::course_params();
$params['id'] = $ids;
$params[KeyAuth::PARAM_ACCESS_TOKEN] = KeyAuth::create_temp_token();
$result = Uri::url("/main/$tool/file.php", $params, false);
return $result;
}