403studio/support

简单便捷的开发小工具

Maintainers

Package info

github.com/403studio/Support

pkg:composer/403studio/support

Statistics

Installs: 28

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v0.1.0 2016-09-05 09:49 UTC

This package is not auto-updated.

Last update: 2026-03-15 04:49:09 UTC


README

为PHP的日常开发提供小巧便捷的小工具

Usage

Collection

use Support\Collection;

$arr = array('id' => 1, 'name' => 'hao.huang');
$collection = new Collection($arr);
echo $collection['id'];
echo $collection->id;
echo $collection->get('id');

Change Log