本文整理汇总了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'));
}