本文整理汇总了PHP中IFilter::stripSlash方法的典型用法代码示例。如果您正苦于以下问题:PHP IFilter::stripSlash方法的具体用法?PHP IFilter::stripSlash怎么用?PHP IFilter::stripSlash使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IFilter
的用法示例。
在下文中一共展示了IFilter::stripSlash方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: isset
?>
"><?php
echo isset($item['name']) ? $item['name'] : "";
?>
</a></dd>
<?php
}
?>
</dl>
<?php
}
?>
</div>
</div>
<?php
echo IFilter::stripSlash($siteConfig->site_footer_code);
?>
</div>
<script type='text/javascript'>
$(function()
{
<?php
$word = IReq::get('word') ? IFilter::act(IReq::get('word'), 'text') : '输入关键字...';
?>
$('input:text[name="word"]').val("<?php
echo isset($word) ? $word : "";
?>
");
$('input:text[name="word"]').bind({
示例2:
</form>
<form action='<?php
echo IUrl::creatUrl("/system/save_conf/form_index/site_footer_conf");
?>
' method='post' name='site_footer_conf'>
<table class='form_table'>
<colgroup>
<col width="150px" />
<col />
</colgroup>
<tr>
<th>站点底部信息:</th>
<td>
<textarea id="site_footer_code" name='site_footer_code' style='width:95%;height:300px;'><?php
echo IFilter::stripSlash($this->confRow['site_footer_code']);
?>
</textarea>
<label>设置站点底部页面信息,您可以点源代码试图直接进行代码编辑</label>
</td>
</tr>
<tr>
<th></th>
<td><button type='submit' class='submit'><span>保存站点底部信息</span></button></td>
</tr>
</table>
</form>
<form action='<?php
echo IUrl::creatUrl("/system/save_conf/form_index/other_conf");