Código PHP:
Ver original
<?php class testSQLite3 extends SQLite3{ public function __construct(){ $this->open('/home/victor/test.sqlite'); } } new testSQLite3(); ?>