Tagged Questions
SPL is a collection of PHP interfaces and classes that are meant to solve standard problems.
15
votes
4answers
293 views
OutOfRangeException vs. OutOfBoundsException
PHP defines two SPL exceptions for invalid keys:
OutOfRangeException: Exception thrown when an illegal index was requested. This represents errors that should be detected at compile time.
...
14
votes
1answer
115 views
multiple spl_autoload_register
what is/are the benefit(s) of having multiple spl_autoload_register
example:
spl_autoload_register('autoload_systems');
spl_autoload_register('autoload_thirdparties');
...
9
votes
4answers
830 views
PHP SPL Reference Documentation
I'm pretty green at all the new features implemented with the PHP SPL, from this very long list all I've played with was with the RecursiveDirectoryIterator class, I don't even fully understand it I ...
7
votes
3answers
157 views
PHP lazy array mapping
Is there a way of doing array_map but as an iterator?
For example:
foreach (new MapIterator($array, $function) as $value)
{
if ($value == $required)
break;
}
The reason to do this is that ...
7
votes
10answers
597 views
How do we get coders to look up existing functions before writing their own?
Why are so many people still writing crappy versions of things in standard libraries? Not to go after PHP developers, but guys go read the PHP SPL
6
votes
3answers
962 views
Peek ahead when iterating an array in PHP 5.2
Is it possible to "peek ahead" while iterating an array in PHP 5.2? For example, I often use foreach to manipulate data from an array:
foreach($array as $object) {
// do something
}
But I often ...
5
votes
1answer
89 views
choosing a datastructure for a collection of dated objects
I'm trying to design a PHP object (call it Incident_Collection) that will hold a collection of other objects each of which implement an Incident interface.
<?php
class Foo implements Incident {
...
5
votes
1answer
226 views
How does ArrayAccess work?
I've been reading about the commonly used interfaces of PHP from the SPL, such as Iterator, Countable, and ArrayAccess. However, I don't understand exactly how they work.
Do their implementations ...
5
votes
3answers
1k views
Help Using RegexIterator in PHP
I have yet to find a good example of how to use the php RegexIterator to recursively traverse a directory.
The end result would be I want to specify a directory and find all files in it with some ...
5
votes
2answers
866 views
Using spl_autoload() not able to load class
I'm playing around with the SPL autoload functionality and seem to be missing something important as I am currently unable to get it to work. Here is the snippet I am currently using:
// ...
4
votes
1answer
145 views
PHP5: SplObjectStorage garbage collection
I'm using a SplObjectStorage to keep information about managed objects. When my objects get destructed, I would like the SplObjectStorage to automatically cleanup the objects which have no external ...
4
votes
1answer
201 views
limiting a collection of objects to a unique set
Currently I have a PHP class called Collection. It uses an array to hold set of unique objects. They are unique, not in the sense that they have different memory addresses (though obviously they ...
4
votes
1answer
128 views
Correct way of setting a custom FileInfo class to an Iterator
I am trying to set a custom class to an Iterator through the setInfoClass method:
Use this method to set a custom class which will be used when getFileInfo and getPathInfo are called. The class ...
4
votes
2answers
508 views
PHP, SPL predefined constants
where can i get some references about SPL predefined constants like SELF_FIRST,CHILD_FIRST ? on php.net i don't get much(just their type).
4
votes
2answers
126 views
Using an object as an array
In recent updates to PHP, they added in various interfaces to allow an object to be treated as an array, such as ArrayAccess, Iterator, Countable, etc.
My question is, would it then make sense that ...
4
votes
3answers
225 views
how to work with RegexIterator::REPLACE mode?
What is wrong in my code:
$i = new RegexIterator(
new ArrayIterator(array(
'test1'=>'test888',
'test2'=>'what?',
'test3'=>'test999')),
'/^test(.*)/',
...
4
votes
3answers
278 views
iterator_to_array
DatePeriod is a PHP class for handling recurring dates. It has a very limited number of methods. So when I want to do basic array functions with the recurring dates, I have to copy it to an array ...
4
votes
2answers
2k views
Sorting files with DirectoryIterator
I'm making a directory listing PHP5 script for lighttpd. In a given directory, I'd like to be able to list direct sub-directories and files (with informations).
After a quick search, ...
4
votes
2answers
320 views
Which implementation of Iterator should I use in PHP, and why?
I'm trying to refactor a large, old project and one thing I've noticed is a range of different Iterator implementations:
while($iterator->moveNext()) {
$item = $iterator->current();
// ...
4
votes
3answers
494 views
PHP's SPL: Do its interfaces involving arrays cover all array properties?
Would it be possible to write a class that is virtually indistinguishable from an actual PHP array by implementing all the necessary SPL interfaces? Are they missing anything that would be critical?
...
3
votes
1answer
104 views
Using PHP iterators
friends. I know, there are many questions here already on these iterators.
I've read something, and I'm not a beginner... but my mind is somewhat stuck on this. Please, help me to comprehend how I use ...
3
votes
2answers
139 views
DirectoryIterator scan to exclude '.' and '..' directories still including them?
In the script below, I'm trying to copy the folders that exist in the $base directory over to the $target directory. However, in my initial echo test, its returning the . and .. directories even ...
3
votes
1answer
396 views
How do I aggregate results from an Adjacency list using PHP's SPL
I've tried using nested sets, and they become very difficult to maintain when dealing with multiple trees and lots of other complications.. I'd like to give PHP's SPL library a stab at this (btw, we ...
3
votes
2answers
1k views
PHP SPL RecursiveDirectoryIterator RecursiveIteratorIterator retrieving the full tree
how can i retrieve the full directory tree using SPL ?
3
votes
2answers
921 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/' ...
3
votes
4answers
383 views
SplObjectStorage doesn't work with String, what to do?
Someone has suggested to e to use SplObjectStorage to keep track of a set of unique things. Great, except it doesn't work with strings. An error says " SplObjectStorage::attach() expects parameter 1 ...
3
votes
5answers
646 views
How do I alter array keys and values while using a RecursiveArrayIterator?
I suspect I'm doing something stupid here, but I'm confused by what seems like a simple problem with SPL:
How do I modified the contents of an array (the values in this example), using a ...
2
votes
1answer
30 views
Reorganizing the children of an SplObjectStorage instance
I have an SplObjectStorage instance that stores element objects to be rendered in a container. I would like the ability to efficiently add and remove objects from any random position in the store.
...
2
votes
1answer
67 views
PHP spl_autoload_register() flavors advantages/disadvantages
The spl_autoload_register() function can be used with 3 types of callbacks: functions, static methods and regular methods. Are there any advantages/disadvantages for these 3 types compared to each ...
2
votes
2answers
42 views
SplObjectStorage and sugary syntax in PHP
Quick one; I doubt it's possible, but is there any way to take advantage of the array($key => $value); syntax of PHP with regard to SplObjectStorage objects?
What I mean is, is there any such way ...
2
votes
3answers
70 views
object LimitIterator - OutOfBoundsException
How can I write a condition that not to run the foreach below if the object LimitIterator is empty?
$numbers = array(5, 19, 8, 35, 50);
$iterator = new ArrayIterator($numbers);
$limiter = new ...
2
votes
3answers
76 views
PHP Predefined Interfaces & SPL - version check sufficient?
This is perhaps an obvious question, but I want to be sure.
I'm trying to work out in which version the "Predefined Interfaces" appeared in PHP. My assumption is 5.0.0, as this is when the SPL ...
2
votes
2answers
143 views
PHP SPL - is there any interface or class to control what happens when casting to array?
So by implementing Iterator, ArrayAccess, and Countable built-in interfaces, we have control over what happens inside an object when it's used in foreach loops or if a property is accessed as if it ...
2
votes
2answers
486 views
Extended PHP ArrayObject Does Not Work Properly
I'm trying to extend the SPL ArrayObject but I've hit a little snag. Using an unmodified ArrayObject, this code works:
$a = new ArrayObject();
$a[1][2] = 'abc';
print_r($a);
yielding this output:
...
2
votes
1answer
544 views
PHP array_key_exists() and SPL ArrayAccess interface: not compatible?
I wrote a simple collection class so that I can store my arrays in objects:
class App_Collection implements ArrayAccess, IteratorAggregate, Countable
{
public $data = array();
public ...
2
votes
2answers
900 views
Iterating over a member array with IteratorAggregate
I have a class and I want to be able to iterate over a certain array member. I did a quick search and found IteratorAggregate:
class foo implements IteratorAggregate
{
protected $_array = ...
2
votes
5answers
383 views
Remove repetitive, hard coded loops and conditions in PHP
I saw this question asked about C# I would like an answer for PHP. I have some old code that has 4 pages of foreach loops and conditions which just makes it hard to read and follow. How would I make ...
1
vote
1answer
46 views
PHPUnit and SplFileObject returning true isWritable on read-only object
I have a Logger interface that accepts a SplFileObject in the constructor to use as the file for that particular log. There is also a log($timestamp, $message) method available to actually do the ...
1
vote
0answers
59 views
Associative Array versus SplObjectStorage
I'm working on code to manage a collection of unique objects. The first prototype of this code utilises an associative array, basically as that's the way I've always done it.
However, I'm also ...
1
vote
3answers
110 views
PHP how to array_unshift on an arrayObject
As stated in the title, How do you perform an array_unshift() on a arrayObject, array_push() is obtained by doing an arrayObject->append() but what about unshift ?
Edit: What I've forgot to ...
1
vote
0answers
126 views
PHP SPL practical real world uses…? [closed]
--- Updated Question -----
As to make my intention clear here to adhere to the policies, I'll rewrite this question in the appropriate format as to not appear as a discussion question
I am trying to ...
1
vote
4answers
145 views
Code take too long to process and has a big memory footprint
This code executes in 0.8seconds and takes up 22Mb of memory on my machine.
$x=500;
$y=500;
$im = imagecreatetruecolor($x,$y);
$ia=array();
for ($i = 0; $i < $x; $i++) {
for ...
1
vote
4answers
643 views
Iterate in reverse through an array with PHP - SPL solution?
Is there an SPL Reverse array iterator in PHP?
And if not, what would be the best way to achieve it?
I could simply do
$array = array_reverse($array);
foreach($array as $currentElement) {}
or
...
1
vote
1answer
24 views
Is there some native way in PHP to correctly return count() on objects implementing ArrayAccess?
To clarify:
When a class implements the ArrayAccess interface, it becomes ready to function as an array, complete with OffsetGet, OffsetSet and so on.
One thing I didn't see was an implementation ...
1
vote
1answer
68 views
SplPriorityQueue ordered by ascending date
The below shows that SplPriorityQueue gives highest priority to the largest priority value which, in this case, corresponds to the latest date.
$q=new SplPriorityQueue();
foreach(range(1,5) as $i){
...
1
vote
2answers
756 views
Why am I getting Fatal error when calling a parent's constructor?
I am extending one of the SPL (Standard PHP Library) classes and I am unable to call the parent's constructor. Here is the error I am getting:
Fatal error: Cannot call constructor
Here is a link ...
1
vote
1answer
34 views
Distinct on more then 1 column
I know this sounds a bit silly, but as of now I need a solution. Say if I have a table:
userid category
derkv2 Batch
markj HTFS
marjk TERMK
How can I return unique rows, only take ...
1
vote
2answers
138 views
Where can I find a downloadable prescription and OTC drugs database?
I am working on a project for (US based) online pharmacies and I am having a hard time finding a database of drugs grouped by layman categories.
I downloaded FDA data from 'Drugs@FDA' and ...
1
vote
1answer
213 views
RecursiveIteratorIterator last child
I iterate through a multidimensional array with RecursiveIteratorIterator and would like to be able to know if the current element is the last child of it's depth. I thought about this:
$iterator = ...
1
vote
1answer
543 views
Declaring Variables on Informix
I've a Store Procedure Routine. I want to get some variables from the execution of that proc.
But i don't know how to create it. For example:
CREATE PROCEDURE foo()
...
RETURN somebar;
END PROCEDURE;
...