WordPress函数文档backslashit()
在每个字母或者数字前面添加 描述 译文 在字母和字符串首的数字前添加反斜线符号。 原文 在每个字母或者数字前面…
在每个字母或者数字前面添加
描述
译文
在字母和字符串首的数字前添加反斜线符号。
原文
在每个字母或者数字前面添加
用法
<?php backslashit( $string ) ?>
参数
$string
(string) (必填) 将添加 的字符串
默认值: None
返回值
(string)
已经添加 的字符串
注意
- This: ‘‘ is a backslash.
历史
添加于 版本: 0.71
源文件
backslashit() 函数的代码位于 wp-includes/formatting.php
.
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* ———————————-
* wordpress函数 kim收集
* ———————————- */
/**
* Adds backslashes before letters and before a number at the start of a string.
*
* @since 0.71
*
* @param string $string Value to which backslashes will be added.
* @return string String with backslashes inserted.
*/
function backslashit( $string ) {
if ( isset( $string[0] ) && $string[0] >= ‘0’ && $string[0] <= ‘9’=“” )=“” $string=” .=“” $string;=“” return=“” addcslashes(=“” $string,=“” ‘a..za..z’=“” );=“” }=“”></=>
|
- 原文:http://codex.wordpress.org/Function_Reference/backslashit
类别:WordPress函数文档、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
评论功能已经关闭!