gcdb::__isset()
最后更新于:2021-11-26 09:07:28
gcdb::__isset( string$name)Makes private properties check-able for backward compatibility.
参数
- $name
-
(string) (Required) The private member to check.
响应
(bool) If the member is set or not.
源文件
文件: gc-includes/gc-db.php
public function __isset( $name ) {
return isset( $this->$name );
}