ホーム > 関数 > 関数 wp_parse_str() 2014/12/10 2014/12/11 目次1 関数 wp_parse_str()2 定義ファイル :/blog/wp-includes/formatting.php 11関数 wp_parse_str()定義ファイル :/blog/wp-includes/formatting.php 11PHP function wp_parse_str( $string, &$array ) { parse_str( $string, $array ); if ( get_magic_quotes_gpc() ) $array = stripslashes_deep( $array ); $array = apply_filters( 'wp_parse_str', $array ); }1234567function wp_parse_str( $string, &$array ) { parse_str( $string, $array ); if ( get_magic_quotes_gpc() ) $array = stripslashes_deep( $array ); $array = apply_filters( 'wp_parse_str', $array );} - 関数