如何在常規PHP,Apache安裝或任何其他WAMP,ZendServer等上使用PHP上的SQLCipher ...在Windows上不是Linux?如何在PHP上使用SQLCipher for SQLite3
OR
我如何在PHP中使用此方法進行加密:http://www.sqlite.org/see/doc/trunk/www/readme.wiki
我需要sqlite3的AES加密。
如何在常規PHP,Apache安裝或任何其他WAMP,ZendServer等上使用PHP上的SQLCipher ...在Windows上不是Linux?如何在PHP上使用SQLCipher for SQLite3
OR
我如何在PHP中使用此方法進行加密:http://www.sqlite.org/see/doc/trunk/www/readme.wiki
我需要sqlite3的AES加密。
你可以找到關於建設SQLCipher爲PHP here
試試這個,一旦安裝和PHP MODS啓用了WAMP(應該已經安裝)說明:
<?php
try {
$db = new SQLite3("demo.db");
$version = $db->query("PRAGMA cipher_version");
if($version){
var_dump($version->fetchArray());
} else {
throw new Exception($db->lastErrorMsg());
}
$db->close();
}
catch (Exception $e){
echo "Exception", $e->getMessage(), "\n";
}
?>
這是用於sqlite而不是sqlcipher –
這是ubanutu操作系統是什麼如果我們有Windows操作系統 –