関数 addslashes_gpc()
2014/12/11
関数 addslashes_gpc()
定義ファイル :/blog/wp-includes/formatting.php 4
1 2 3 4 5 6 | function addslashes_gpc($gpc) { if ( get_magic_quotes_gpc() ) $gpc = stripslashes($gpc); return wp_slash($gpc); } |
WEBシステム SI屋の代表のブログです。
2014/12/11
1 2 3 4 5 6 | function addslashes_gpc($gpc) { if ( get_magic_quotes_gpc() ) $gpc = stripslashes($gpc); return wp_slash($gpc); } |