文件名称:PHP的集合库.zip
文件大小:86KB
文件格式:ZIP
更新时间:2022-07-31 04:22:40
类库下载-PHP的集合库
<?php // Copyright (c) Lellys Informática. All rights reserved. See License.txt in the project root for license information. namespace Collections; /** * Provides functionality to evaluate queries against a specific data source wherein the type of the data is not * specified. */ interface CollectionInterface extends ConstCollectionInterface, OutputCollectionInterface { /** * Removes all items from the collection. * @return void */ public function clear(); }获取一个集合的语法与获取数据库时相同:一个集合相当于一张表。(如果你对关系型数据库比较熟悉)