esc_url()(過濾鏈接)
很多 URL 會有一些小錯誤,用 esc_url() 函數可以屏蔽或者修正這些錯誤,並且可以拒絕不安全的協議。
esc_url() 函數的工作內容:
默認拒絕不是下面協議的 URL:defaulting to http、https、ftp、ftps、mailto、news、irc、gopher、nntp、feed 和 telnet
刪除無效字符和危險的字符
將字符轉換成 HTML 實體字符
使用方法
esc_url( $url, $protocols, $_context );
參數
$url
(字符串)(必須)要被過濾的 URL.
默認值:None
$protocols
(數組)(可選)可以接收協議的數組,如果沒有設置,則默認為:defaulting to http、https、ftp、ftps、mailto、news、irc、gopher、nntp、feed 和 telnet.
默認值:None
$_context
(字符串)(可選)如何返回 URL.
默認值:(字符串)display
返回值
(字符串)返回過濾後的鏈接。
例子
<?php echo esc_url( 'www.endskin.com' );//輸出:http://www.endskin.com ?>
更多
此函數位於:wp-includes/formatting.php
esc_sql()(過濾 Sql 語句)
esc_sql() 用來過濾准備添加到 Sql 語句裡邊的字符串,防止 Sql 注入和 Sql 語句被數據干擾出現異常。
用法
esc_sql( $data );
參數
$data
(字符串)(必須)要過濾的字符串。
默認值:None
返回值
(字符串)返回過濾後的字符串,可以直接添加到 Sql 語句裡。
例子
$name = esc_sql( $name ); $status = esc_sql( $status ); $wpdb->get_var( "SELECT something FROM table WHERE foo = '$name' and status = '$status'" );
更多
此函數位於:wp-includes/formatting.php