Warning: This method has been deprecated. Use wpdb::has_cap() instead.

wpdb::supports_collation()

Whether the database supports collation.


Description Description

Called when WordPress is generating the table scheme.

Use wpdb::has_cap( 'collation' ).


Return Return

(bool) True if collation is supported, false if version does not


Top ↑

Source Source

File: wp-includes/wp-db.php

	public function supports_collation() {
		_deprecated_function( __FUNCTION__, '3.5.0', 'wpdb::has_cap( \'collation\' )' );
		return $this->has_cap( 'collation' );
	}

Top ↑

Changelog Changelog

Changelog
Version Description
3.5.0 Use wpdb::has_cap()
2.5.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.