gcdb::supports_collation()
最后更新于:2021-11-26 09:05:34
gcdb::supports_collation()Determines whether the database supports collation.
响应
(bool) True if collation is supported, false if not.
源文件
文件: gc-includes/gc-db.php
public function supports_collation() {
_deprecated_function( __FUNCTION__, '3.5.0', 'gcdb::has_cap( 'collation' )' );
return $this->has_cap( 'collation' );
}