ホーム > 関数 > 関数 esc_textarea() 2014/12/09 2014/12/11 目次1 関数 esc_textarea()2 定義ファイル :/blog/wp-includes/formatting.php 7関数 esc_textarea()定義ファイル :/blog/wp-includes/formatting.php 7PHP function esc_textarea( $text ) { $safe_text = htmlspecialchars( $text, ENT_QUOTES, get_option( 'blog_charset' ) ); return apply_filters( 'esc_textarea', $safe_text, $text ); }1234function esc_textarea( $text ) { $safe_text = htmlspecialchars( $text, ENT_QUOTES, get_option( 'blog_charset' ) ); return apply_filters( 'esc_textarea', $safe_text, $text );} - 関数