- PHP 手册
- 函数参考
- 其它基本扩展
- Yaf
- Yaf_Application
Yaf_Application::__sleep
(Yaf >=1.0.0)
Yaf_Application::__sleep — Yaf_Application 不能被序列化
说明
private Yaf_Application::__sleep ( void ) : void
参数
此函数没有参数。
返回值
User Contributed Notes 1 note
up down 0 akbarishahin at gmail dot com ¶4 months ago
class Connection
{
protected $link;
private $dsn, $username, $password;
public function __construct($dsn, $username, $password)
{
$this->dsn = $dsn;
$this->username = $username;
$this->password = $password;
$this->connect();
}
private function connect()
{
$this->link = new PDO($this->dsn, $this->username, $this->password);
}
public function __sleep()
{
return array('dsn', 'username', 'password');
}
}
add a note
官方地址:https://www.php.net/manual/en/yaf-application.sleep.php