0

如何在常规 PHP、Apache 安装或任何其他 WAMP、ZendServer 等上使用 PHP 上的 SQLCipher...在 Windows 上而不是 linux 上?

或者

如何在 PHP 中使用这种方法进行加密:http ://www.sqlite.org/see/doc/trunk/www/readme.wiki

我需要对 SQLite3 进行 AES 加密。

4

2 回答 2

-1

您可以在此处找到有关为 PHP 构建 SQLCipher 的说明

于 2013-06-02T18:00:34.103 回答
-1

试试这个,一旦在 Wamp 上的 php mods 中安装并启用(应该已经安装):

<?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";
}
?>
于 2016-01-26T11:27:47.073 回答