Changeset 38125 for trunk/src/wp-includes/wp-db.php
- Timestamp:
- 07/20/2016 07:32:05 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/wp-db.php
r37985 r38125 757 757 758 758 /** 759 * Given a charset and collation, determine the best charset and collation to use.759 * Determines the best charset and collation to use given a charset and collation. 760 760 * 761 761 * For example, when able, utf8mb4 should be used instead of utf8. 762 762 * 763 763 * @since 4.6.0 764 * 765 * @param string $charset The character set to check.766 * @param string $collate The collationto check.767 * 764 * @access public 765 * 766 * @param string $charset The character set to check. 767 * @param string $collate The collation to check. 768 768 * @return array The most appropriate character set and collation to use. 769 769 */ … … 3237 3237 * 3238 3238 * @since 2.7.0 3239 * @since 4.1.0 Support was addedfor the 'utf8mb4' feature.3240 * @since 4.6.0 Support was addedfor the 'utf8mb4_520' feature.3239 * @since 4.1.0 Added support for the 'utf8mb4' feature. 3240 * @since 4.6.0 Added support for the 'utf8mb4_520' feature. 3241 3241 * 3242 3242 * @see wpdb::db_version() … … 3277 3277 return version_compare( $client_version, '5.5.3', '>=' ); 3278 3278 } 3279 case 'utf8mb4_520' : 3279 case 'utf8mb4_520' : // @since 4.6.0 3280 3280 return version_compare( $version, '5.6', '>=' ); 3281 3281 }
Note: See TracChangeset
for help on using the changeset viewer.