PHP quotemeta() 函數(shù)
PHP quotemeta() 函數(shù)
實(shí)例
在預(yù)定義的字符前添加反斜杠:
<?php
$str = "Hello world. (can you hear me?)";
echo quotemeta($str);
?>
$str = "Hello world. (can you hear me?)";
echo quotemeta($str);
?>
運(yùn)行實(shí)例 ?
定義和用法
quotemeta() 函數(shù)在字符串中某些預(yù)定義的字符前添加反斜杠。
預(yù)定義的字符:
- 句號(.)
- 反斜杠(\)
- 加號(+)
- 星號(*)
- 問號(?)
- 方括號([])
- 脫字號(^)
- 美元符號($)
- 圓括號(())
提示:該函數(shù)可用于轉(zhuǎn)義擁有特殊意義的字符,比如 SQL 中的 ( )、[ ] 以及 * 。
注釋:該函數(shù)是二進(jìn)制安全的。
語法
quotemeta(string)
參數(shù) | 描述 |
---|---|
string | 必需。規(guī)定要檢查的字符串。 |
技術(shù)細(xì)節(jié)
返回值: | 返回引用元字符的字符串。 |
---|---|
PHP 版本: | 4+ |
更多實(shí)例
實(shí)例 1
在多個預(yù)定義的字符前添加反斜杠:
<?php
$str1 = "1 + 1 = 2";
$str2 = "1 * 1 = 1";
$str3 = "Could you borrow me 5$?";
$str4 = "Are you not entertained? (I am..)";
$str5 = "The caret [ ^ ] Looks like a hat!";
echo quotemeta($str1)."<br>";
echo quotemeta($str2)."<br>";
echo quotemeta($str3)."<br>";
echo quotemeta($str4)."<br>";
echo quotemeta($str5)."<br>";
?>
$str1 = "1 + 1 = 2";
$str2 = "1 * 1 = 1";
$str3 = "Could you borrow me 5$?";
$str4 = "Are you not entertained? (I am..)";
$str5 = "The caret [ ^ ] Looks like a hat!";
echo quotemeta($str1)."<br>";
echo quotemeta($str2)."<br>";
echo quotemeta($str3)."<br>";
echo quotemeta($str4)."<br>";
echo quotemeta($str5)."<br>";
?>
運(yùn)行實(shí)例 ?

相關(guān)文章
- PHP 數(shù)組
- PHP 數(shù)組排序
- PHP While 循環(huán)
- PHP 魔術(shù)常量
- PHP $_GET 變量
- PHP $_POST 變量
- PHP Session
- PHP Secure E-mails
- PHP array_intersect_key() 函數(shù)
- PHP array_intersect_uassoc() 函數(shù)
- PHP array_key_exists() 函數(shù)
- PHP array_pad() 函數(shù)
- PHP array_reduce() 函數(shù)
- PHP array_slice() 函數(shù)
- PHP list() 函數(shù)
- PHP natcasesort() 函數(shù)
- PHP reset() 函數(shù)
- PHP rsort() 函數(shù)
- PHP uksort() 函數(shù)
- PHP cURL 函數(shù)