本文整理汇总了PHP中requestUtils::getWebRootUrl方法的典型用法代码示例。如果您正苦于以下问题:PHP requestUtils::getWebRootUrl方法的具体用法?PHP requestUtils::getWebRootUrl怎么用?PHP requestUtils::getWebRootUrl使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类requestUtils
的用法示例。
在下文中一共展示了requestUtils::getWebRootUrl方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getUrl
/**
* Will create the URL for the kshow_id to be used as an HTML link
*
* @param string $kshow_id
* @return string URL link
*/
public static function getUrl($kshow_id)
{
return requestUtils::getWebRootUrl() . "browse?kshow_id={$kshow_id}";
}
示例2: get_class
?>
<a href="/index.php/system/login?exit=true">logout</a><br>
<h1>System Test Results</h1>
<TABLE align="center">
<?php
echo '<TR><TD>';
echo "logger class: " . get_class(sfLogger::getInstance());
echo '</TD></TR>';
echo '<TR><TD>';
echo "Host: " . requestUtils::getHost();
echo '</TD></TR>';
echo '<TR><TD>';
echo " webRoot: " . requestUtils::getWebRootUrl();
echo '</TD></TR>';
echo "<TR><TD>Is the server running the 'curl_init' extension? " . (function_exists("curl_init") ? $ok : $notok) . "</TD></TR>";
/*
echo '<TR><TD>The name of the user running httpd: '. exec('whoami')."</TD></TR>";
echo '<TR><TD>Path: '. exec('echo $PATH')."</TD></TR>";
echo '<TR><TD>Is FFMPEG in the path: '. (exec('ffmpeg') != null ? $ok : $notok)."</TD></TR>";
*/
echo '<TR><TD>';
//emailContactImporterDiagnose ();
echo '</TD></TR>';
/*
@ini_set('zend_monitor.enable', 0);
if(@function_exists('output_cache_disable'))
示例3: createBlockEmailUrl
public static function createBlockEmailUrl($email)
{
$url = requestUtils::getWebRootUrl() . "/mail/blockEmail?e=" . self::createBlockEmailStr($email);
return $url;
}