sharif/php-crud-starter-kit

此包可以帮助使用PHP创建简单的CRUD应用程序。

0.0.4 2024-08-30 14:28 UTC

This package is auto-updated.

Last update: 2024-09-30 14:43:36 UTC


README

PhpCrudStarterKit是一个非常简单且小巧的PHP包,专为娱乐项目创建。它使用文件系统和JSON提供基本的创建、读取、更新和删除(CRUD)功能。此包非常适合不需要数据库的小规模应用或快速原型。

安装

您可以通过 Composer 安装此包

composer require sharif/php-crud-starter-kit

示例

$app = \Sharif\PhpCrudStarterKit\App::getInstance();

// $app->create([ 'name' => 'Ahmed', 'email' => 'qyf9A@example.com' ]);
// $app->delete(1725026277);
// $app->update(1725026238, [ 'name' => 'Sharif', 'email' => 'sharif@example.com' ]);
// print_r($app->show_single( 1725026560 ) );