ProDevTips: Sorting 2D-arrays in PHP - anectodes and reflections
On the ProDevTips website today, there's a new article looking at the sorting of arrays, specifically of the two- and three-dimensional sort. One of the many problems with PHP that detractors are...
View ArticleLee Blue's Blog: How To Sort A Zend_Db_Table_Rowset
Lee Blue has posted a handy tip for users of the Zend Framework, specifically when sorting the results from a query to tables linked in a Zend_Db_Table setup. So you figured out how to define the...
View ArticlePHPFreaks.com: PHP Custom List Order
The PHPFreaks site has a new tutorial posted today showing how to create a method for custom list ordering in PHP. So you have some tabular data printed out in your browser. You can even change the...
View ArticleZend Developer Zone: Paging and Sorting Data with Zend Framework, Doctrine...
The Zend Developer Zone has posted the second part of their look at pagination with the combination of the Zend Framework, Doctrine and PEAR and how the Zend_Paginator component compares to the PEAR...
View ArticleChris Hartjes' Blog: Sorting Relationship Results In Doctrine 1.2
Doctrine allows you to set up relationships to link data in various tables together. Unfortunately, those aren't always in the order they need to be in. In a new post to his blog Chris Hartjes shows...
View ArticleBrian Swan's Blog: Sorting Azure Table Entities by Timestamp with PHP
Brian Swan has a quick new post to his blog for the PHP + Azure users out there on how to easily sort table entities by a timestamp through the Azure SDK for PHP. The timestamp is a property on the...
View ArticleChris Shiflett's Blog: Sorting Multi-Dimensional Arrays in PHP
In a sort of "remind himself later" kind of post, Chris Shiflett has shared a quick example of a common task PHP developers face sorting a multi-dimensional array. Every time I need to sort a...
View ArticlePHPBuilder.com: PHP Arrays: Advanced Iteration and Manipulation
In this new tutorial from PHPBuilder.com, Jason Gilmore shows you some of the more advanced things you can do with arrays in PHP (specifically in the areas of iterating through them and manipulating...
View ArticlePHPMaster.com: MongoDB Revisited
In this new post to PHPMaster.com today Ahmed Shreef continues on from his previous introduction to MongoDB and gets into more detail on things like cursors, query operators, queries on embedded...
View ArticlePHPEasy.co.uk: Sorting array data using SplMaxHeap
On PHPEasy.co.uk today there's a new tutorial posted showing you how to sort using the SplMaxHeap functionality provided by the Standard PHP Library. The SplMaxHeap class basically stores numbers in...
View Article