Skip to content

Releases: a19836/php-local-db

PHP Local DB - v1

17 Dec 16:21

Choose a tag to compare

PHP Local DB is a lightweight PHP library that provides a simple local database mechanism by storing data in encrypted files.
It allows applications to persist structured data securely without relying on an external database server.

The library supports common database-like operations, including insert, update, delete, retrieve a single item, and retrieve multiple items, all performed against an encrypted local storage file protected by a key.

With this library, you can:

  • Store application data securely in a local encrypted file
  • Use a key-based encryption mechanism to protect stored data
  • Perform CRUD operations (create, read, update, delete)
  • Retrieve individual records or collections of records based in conditions
  • Avoid external database dependencies for small or embedded use cases

This library is ideal for configuration storage, lightweight caching, offline data persistence, embedded systems, or applications where a full database server is unnecessary or unavailable.