本文整理匯總了PHP中Horde_Url::remove方法的典型用法代碼示例。如果您正苦於以下問題:PHP Horde_Url::remove方法的具體用法?PHP Horde_Url::remove怎麽用?PHP Horde_Url::remove使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Horde_Url
的用法示例。
在下文中一共展示了Horde_Url::remove方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: _
<p><font size="4"><strong><a href="<?php
$url = new Horde_Url($this->task->view_link);
echo $url->remove(session_name());
?>
"><?php
echo $this->h($this->task->name);
?>
</a></strong></font></p>
<table width="100%" border="0" cellspacing="0" cellpadding="0"><tr>
<td width="140" valign="top">
<img src="cid:<?php
echo $this->imageId;
?>
" />
</td>
<td valign="top">
<table width="100%" border="0" cellpadding="5" cellspacing="0">
<?php
$i = 0;
?>
<tr<?php
if ($i++ % 2) {
echo ' bgcolor="#f1f1f1"';
}
?>
>
<td nowrap="nowrap" align="right">
<font size="2"><strong><?php
echo _("Date and time:");
示例2: testRemoveChaining
public function testRemoveChaining()
{
$url = new Horde_Url('test?foo=1&bar=2');
$this->assertEquals('test', (string) $url->remove('foo')->remove('bar'));
}