本文整理汇总了PHP中JView::escape方法的典型用法代码示例。如果您正苦于以下问题:PHP JView::escape方法的具体用法?PHP JView::escape怎么用?PHP JView::escape使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类JView
的用法示例。
在下文中一共展示了JView::escape方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
<th><?php
echo JText::_("WEBSITE");
?>
</th>
<td><input name='website' value="<?php
echo JView::escape($this->comment['website']);
?>
"></td>
</tr>
<tr>
<th><?php
echo JText::_("COMMENT");
?>
</th>
<td colspan=2><textarea name='body' rows='5' cols='40' id='comment_body'><?php
echo JView::escape($this->comment['body']);
?>
</textarea></td>
</tr>
<?php
if ($this->kb_comments_captcha) {
?>
<tr>
<th><?php
echo JText::_("VERIFICATION");
?>
<?php
if ($this->valid == -1) {
?>
<div class='fss_invalid_captcha'><?php
echo JText::_("INVALID_CODE");
示例2:
?>
</div>
<form action="<?php
echo JRoute::_('index.php?option=com_fss&view=ticket&tmpl=component&what=addccuser&ticketid=' . JRequest::getVar('ticketid'));
?>
" method="post" name="fssForm">
<div id="editcell">
<table>
<tr>
<td width="100%">
<?php
echo JText::_("SEARCH");
?>
:
<input type="text" name="search" id="search" value="<?php
echo JView::escape($this->search);
?>
" onchange="document.fssForm.submit();"/><br>
<button onclick="this.form.submit();"><?php
echo JText::_("GO");
?>
</button>
<button onclick="document.getElementById('search').value='';this.form.submit();this.form.getElementById('faq_cat_id').value='0';"><?php
echo JText::_("RESET");
?>
</button>
</td>
</tr>
</table>
<table class="fss_table" cellpadding="0" cellspacing="0" width="100%">