-
-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Phalcon\Collection #13886
Comments
Implement a zephir version of Illuminate/Support/Collection |
@JABirchall never seen that before lol. For now we will create it with phalcon -> zephir. Maybe later we can speed it up using a more native C/Zephir implementation |
@niden Im just saying, Illuminate's collection is very verbose and useful, I use it on a ton of things and even pull it into phalcon projects to collect database, api or stream results. |
I will check it out bud thanks. |
* [4.0.x] - Added unicode flag for email filter * [4.0.x] - Updating the ext folder * [4.0.x] - Added Arr helper class * Revert "[4.0.x] - Added Arr helper class" This reverts commit f8153d3. * Revert "[4.0.x] - Updating the ext folder" This reverts commit 655eafe. * [#13886] - Initial implementation and test stubs * [#13886] - Fixing interface * [#13886] - Added constructor * [#13886] - Implementation of the collection * [#13886] - Collection tests * [#13886] - Updated the CHANGELOG
Implemented |
Phalcon\Collection
is a collection is a supercharged OO array. It implementsCountable
,ArrayAccess
,Serializable
andJsonSerializable
.It is used as a base for collections through the application, especially when in need to access globals such as
$_POST
,$_GET
etc.The text was updated successfully, but these errors were encountered: