0
votes
2answers
14 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/s …
1
vote
2answers
36 views
Make an object searchable with array_search in PHP
Hi,
I would like to make a class in PHP such as it would be searchable with PHP native method array_search. Currently my class implements IteratorAggregate and Countable, which al …
1
vote
2answers
64 views
SPL Throwing Exceptions
Is there a way to throw exceptions from an SPL Autoloader in PHP in case it fails? It doesn't seem to work under PHP 5.2.11.
class SPLAutoLoader{
public static function autol …
2
votes
2answers
164 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-&g …
6
votes
10answers
517 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
0
votes
1answer
35 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(); …
1
vote
2answers
34 views
PHP: SPLFileObject next() behavior
Hi there,
In PHP SPLFileObject allows treating files as iterators.
Yet there is a behavior that I don't understand. When you call next() on the object it increments the value of …
1
vote
3answers
28 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() e …
1
vote
3answers
50 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 cop …
0
votes
1answer
75 views
Sorting files with DirectoryIterator
Hi,
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 …
0
votes
2answers
114 views
How does the PHP IteratorIterator class work?
Try as I might I cannot get my head around what the IteratorIterator class actually does. I understand that classes can implement Traversable so the engine knows it can loop using …
0
votes
2answers
68 views
__autoload mix up?
I have a server with many customers on, when I develop I include my init.php in which I have an __autoloader() function that includes the file with dir_name(__FILE__)."/classes/".$ …
2
votes
4answers
195 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), …
0
votes
2answers
45 views
how to find what languages are loaded into EnterpriseDB?
How can I find what languages have been loaded into EnterpriseDB(PL/pgsql, SPL, Java)? EnterpriseDB is built on top of PostgreSQL if anyone knows of a way to find the loaded langua …
1
vote
2answers
569 views
PHP SPL to manipulate recursive menu
I have a table in a database which has category data:
id title parent
1 category 1 0
2 category 2 2
3 category 3 3
4 category 4 0
Eeach parent may have …
