PHP stripslashes() 函数
PHP stripslashes() 函数
实例
删除反斜杠:
<?phpecho stripslashes("Who's Bill Gates?");?>
语法
stripslashes(string)
参数 | 描述 |
---|---|
string | 必需。规定要检查的字符串。 |
技术细节
返回值: | 返回已剥离反斜杠的字符串。 |
PHP 版本: | 4+ |
删除反斜杠:
<?phpecho stripslashes("Who's Bill Gates?");?>
stripslashes(string)
参数 | 描述 |
---|---|
string | 必需。规定要检查的字符串。 |
返回值: | 返回已剥离反斜杠的字符串。 |
PHP 版本: | 4+ |