php函式 轉換字串函式

2021-07-23 07:41:37 字數 1632 閱讀 4565

把預定義的 html 實體 ""(大於)轉換為字元:

<?php

$str = "this is someboldtext.";

echo htmlspecialchars_decode($str);

?>

上面**的 html 輸出如下(檢視源**):

this is someboldtext.

上面**的瀏覽器輸出如下:

this is some 

bold text.

htmlspecialchars_decode() 函式把一些預定義的 html 實體轉換為字元。

會被解碼的 html 實體是:

htmlspecialchars_decode() 函式是 htmlspecialchars() 函式的反函式。

htmlspecialchars_decode(

string,flags)

引數描述

string

必需。規定要解碼的字串。

flags

可選。規定如何處理引號以及使用哪種文件型別。 可用的引號型別:

規定使用的文件型別的附加 flags:

返回值:

返回已轉換的字串。

php 版本:

5.1.0+

更新日誌:

在 php 5.4 中,新增了用於規定使用的文件型別的附加 flags:ent_html401、ent_html5、ent_xml1 和 ent_xhtml。

把一些預定義的 html 實體轉換為字元:

<?php

$str = "jane & 'tarzan'";

echo htmlspecialchars_decode($str, ent_compat); // will only convert double quotes

echo "

";

echo htmlspecialchars_decode($str, ent_quotes); // converts double and single quotes

echo "

";

echo htmlspecialchars_decode($str, ent_noquotes); // does not convert any quotes

?>

上面**的 html 輸出如下(檢視源**):

jane & 'tarzan'

jane & 'tarzan'

jane & 'tarzan'

上面**的瀏覽器輸出如下:

jane & 'tarzan'

jane & 'tarzan'

jane & 'tarzan'

把預定義 html 實體轉換為雙引號:

<?php

$str = 'i love "php".';

echo htmlspecialchars_decode($str, ent_quotes); // converts double and single quotes

?>

上面**的 html 輸出如下(檢視源**):

i love "php".

上面**的瀏覽器輸出如下:

i love "php".

字串轉換函式

標頭檔案 stdlib.h 1 函式名 atof 功 能 把字串轉換成浮點數 用 法 double atof const char nptr 函式說明 atof 會掃瞄引數nptr字串,跳過前面的空格字元,直到遇上數字或正負符號才開始做轉換,而再遇到非數字或字串結束時 0 才結束 轉換,並將結果返回...

字串轉換函式

itoa,是廣泛應用的非標準c語言擴充套件函式。將任意型別的數字轉換為字串。在中與之有相反功能的函式是atoi。由於它不是標準c語言函式,所以不能在所有的編譯器中使用。功能 將任意型別的數字轉換為字串。在中與之有相反功能的函式是atoi。char itoa int value,char string...

VBA 字串函式 轉換函式

1,vba字串函式列表 trim string 去掉string左右兩端空白 ltrim string 去掉string左端空白 rtrim string 去掉string右端空白 len string 計算string長度 left string,x 取string左段x個字元組成的字串 righ...