Tagged Questions
The php-spl tag has no wiki summary.
11
votes
2answers
177 views
array_map vs loop and operation
Using:
for($i=1; $i<= 10000; ++$i) {
$arrayOfNumbers[] = rand(1, 99999);
}
Can some explain why there is such a speed difference:
array_map(array($maxHeap, 'insert'), $arrayOfNumbers);
# ...
5
votes
2answers
745 views
PHP RecursiveIterator traversing
I have a structure representing a form and I want to iterate it using RecursiveIterator.
The problem is this only returns the top-level questions. What am I doing wrong?
Whole form:
class Form ...
4
votes
1answer
62 views
PHP's Iterator class
I am working with PHP's SPL Recursive Iterators, they are rather confusing to me though but I am learning.
I am using them in a project where I need to recursively grab all files and exclude folders ...
4
votes
1answer
368 views
What are the benefits of using SPL ArrayObject, ArrayIterator, RecursiveArrayIterator instead of regular arrays?
I've started to learn PHP SPL from ArrayIterators and I'd like to know what are the benefits of using SPL ArrayObject, ArrayIterator, RecursiveArrayIterator instead of regular arrays?
a) I've heard ...
3
votes
2answers
186 views
effective search over an php iterator
I have a custom iterator (TokenIterator to be precise, which iterates, well, tokenized php code). Items are simple objects ("property bags" with some normalisation methods added)
I have to implement ...
3
votes
2answers
922 views
SPL Autoloading best practices
In my include_path on the server-side I have a reference to a pear directory, in '/usr/share/pear/'. Within my applications I include files from a common library, living in '/usr/share/pear/library/' ...
2
votes
3answers
402 views
PHP - SPL vs array:: When should we use SPL and when we should use array in php5?
In java and C++ when we dont know the size - array not used like in php, instead used linkedList etc..
In php exist SPL, but most of the times programers use array, why(because peaple don't know about ...
1
vote
1answer
208 views
Problem serializing an object tree with SplObjectStorage
I have implemented a simple Composite pattern using SplObjectStorage, like the example above:
class Node
{
private $parent = null;
public function setParent(Composite $parent)
{
...
1
vote
1answer
129 views
Where is the source code of the PHP SPL library?
I can find the definition files at http://www.php.net/~helly/php/ext/spl/... but I want to extend DirectoryIterator and SplFileInfo to work over a virtual filesystem stored on a database... not a real ...
0
votes
3answers
328 views
What is the point of PHP's SplDoublyLinkedList class, and more importantly, Linked Lists in general?
On a quest to expand my programming prowess, I've delved ever-so-slightly into The Standard PHP Library. This led to my discovery of the SplDoublyLinkedList class. From there I read the descriptions ...