登录 注册
当前位置:主页 > 资源下载 > 9 > PHP的集合库.zip下载

PHP的集合库.zip下载

  • 更新:2024-10-06 09:30:26
  • 大小:86KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

<?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(); }获取一个集合的语法与获取数据库时相同:一个集合相当于一张表。(如果你对关系型数据库比较熟悉)