403studio/support

简单便捷的开发小工具

Installs: 27

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/403studio/support

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

This package is not auto-updated.

Last update: 2025-10-26 02:55:27 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