thinkphp在公升級到5.1.7後,在模版輸出上預設使用了htmlentities函式,和之前版本中預設採用的htmlspecialchars函式有區別。
預設的變數輸出都會使用htmlentities
方法進行轉義輸出
如果不想被轉義,那只需要在變數後面加上raw方法即可,如:
你還可以設定預設的過濾方法,在配置檔案template.php
中設定
'default_filter' => 'htmlspecialchars'
htmlentities就是將所有字元轉換為html實體,也就是全部轉義輸出。而htmlspecialchars是把預定義的字元轉換為html實體。htmlspecialchars字元包括連線符(&)、雙引號(")、單引號(')、小於(<)、大於(>)。如果需要把html實體再轉換為字元,這兩個函式都提供了乙個decode函式分別是html_entity_decode()、htmlspecialchars_decode(),拼寫有區別,前面是拆分html和entity加下劃線後追加_decode的,而後者是直接補_decode字尾的。 mybatis字串轉義問題解決
提前劇透 如果引數中有.等特殊引數,需要使用 但需要注意sql注入問題 select select from account order by limit public listgetaccountlist param orderby string orderby,param orderrule s...
PHP md5函式 的16位字元亂碼問題解決
php的md5函式用於對字串引數進行md5運算,該函式有兩個引數 md5 string str bool raw output false string 第乙個引數是輸入字串 第二個引數預設為false,設定為true時可以輸出16位的md5值。預設情況下,md5 string str 會返回 32...
salt ssh單引號轉義問題解決
今天寫salt ssh指令碼的時候遇到個小問題,問題如下 1 mysql資料庫使用者賦權操作 mysql grant all privileges on to repl 192.168.66.identified by repl 2 linux命令列下使用命令為mysql資料庫使用者賦權操作 mys...