Home >php教程 >php手册 >PHP stripcslashes与stripslashes()教程

PHP stripcslashes与stripslashes()教程

PHP中文网
PHP中文网Original
2016-06-13 11:16:452855browse

  stripcslashes引用了一系列与addcslashes ( )

定义和用法<br>该stripcslashes ( )函数删除反斜线增加的addcslashes ( )函数。<br><br>语法

stripcslashes(string)
<br>
		参数
说明
string 必选项
<br>

提示和说明 提示:此功能可用于清理回收一个字符串从数据库。 例如

<?
phpecho stripcslashes("Hello, my name is Kai Jim.");
?>
输出.
Hello, my name is Kai Jim.
好了下面我们来看看<strong>stripcslashes</strong>函数定义与用法以及实例教程吧.

定义和用法 该stripslashes ( )函数功能移除反斜线增加的和addslashes ( )函数。 语法

stripslashes(string)
		参数
说明
string 必须有

<br>提示和说明 提示:此功能可用于清理数据的检索从数据库或从HTML表单。 例如

<?php
echo stripslashes("Who&#39;s Kai Jim?");
?>
输出.
Who's Kai Jim?

<br>

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:php chmod 函数教程Next article:php 字符串strrev 函数