Table of Contents
Ever needed any flat database on your php project?
With smskdb you can create, edit and query flat database with smskdb class.
So why waiting? Get started now!
- Php
- Json database
You can install sdb using git or github cli
OS X & Linux & Windows (With Github CLI):
gh repo clone devsimsek/sdb
OS X & Linux & Windows (With Git):
git clone https://github.com/devsimsek/sdb.git
Once you've installed smskdb successfully on your workspace you can start using your flat database.
Example Usage;
<?php
require "Sdb.php";
$sdb = new Sdb("exampleDirectory", true);
// Create New Database
if ($sdb->create("example.sdb")) {
// Load created database and access it by objects
$sdb->load("example.sdb", SDB_READ_OBJ);
// Set new data in database
$sdb->set("test", array("is_success" => "true"));
// Save updated records to database
$sdb->save();
}
- Optimizing code
- Create sql engine
See the open issues for a full list of proposed features (and known issues).
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make sdb better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Distributed under the MIT License. See LICENSE
for more information.
devsimsek - @smskSoft - mtnsmsk@smsk.ga
Project Link: https://github.com/devsimsek/sdb