gcdb::__unset()
最后更新于:2021-11-26 09:07:44
gcdb::__unset( string$name)
Makes private properties un-settable for backward compatibility.
参数
- $name
-
(string)
(Required)
The private member to unset
源文件
文件: gc-includes/gc-db.php
public function __unset( $name ) {
unset( $this->$name );
}