句默_
2018-12-08 12:27
public function gc ($maxlifetime) { $sql = "delete from sessions where session_expires+'{$maxlifetime}'<" . time (); mysqli_query ($this -> link, $sql); if ( mysqli_affected_rows ($this -> link) > 0 ) { return true; } return false; }
你这么写是错的吧,mysqli_affected_rows里面不应该是个查询出来的资源么。。。
PHP中的会话控制
17406 学习 · 57 问题
相似问题