时间:2021-07-01 10:21:17 帮助过:29人阅读
代码如下:
$db = new SQLite3('mysqlitedb.db');
//获取文件2进制流
$filename = "http://www.gxlcms.com/logo.gif";
$handle = fopen($filename, "r");
$contents = fread($handle, filesize ($filename));
fclose($handle);
//创建数据表
$db->exec('CREATE TABLE person (idnum TEXT,name TEXT,photo BLOB)');
$stmt = $db->prepare("INSERT INTO person VALUES ('41042119720101001X', '张三',?)");
$stmt->bindValue(1, $contents, SQLITE3_BLOB);
$stmt->execute();
代码如下:
$pdo = new SQLite3('mysqlitedb.db');
$results = $pdo->query('select * from person');
while ($row = $results->fetchArray()) {
ob_start();
header("Content-Type: image/jpg");
echo $row['photo'] ;
ob_end_flush();
}
?>
代码如下:
以上就介绍了 小文件php+SQLite存储方案,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。