一个简单的php数据存储包

1.0.0 2022-05-01 10:47 UTC

This package is auto-updated.

Last update: 2024-09-29 06:25:52 UTC


README

一个简单的php参数包

使用方法

<?php

require_once './vendor/autoload.php';

$bag = new \MamadouAlySy\ParameterBag();

$bag->add('name', 'Mamadou');
$bag->has('name') // return true
count($bag) // return 1;