本文整理匯總了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;
}