Simple question that i couldn’t find in the SQLite3::close() of the PHP manual: does PHP close sqlite databases when the script ends or do we need to call $db->close() ourselves all the time?
Simple question that i couldn’t find in the SQLite3::close() of the PHP manual: does
Share
A simple answer: yes the file is closed at the end of the script. No need to do a close.