SPL is a collection of PHP interfaces and classes that are meant to solve standard problems.
2
votes
2answers
50 views
php native functions like min() do not support fixed arrays
I was wondering why the native php function like min($array) do not support Spl Fixed Arrays. Okay gettype will say it is an object, however it still contains array data.
There are so many useful php ...
0
votes
1answer
14 views
How to check element exists in SplPriorityQueue?
I've custom SplPriorityQueue.
class Application_Model_Astar_PQtest extends SplPriorityQueue
{
public function compare($priority1, $priority2)
{
if ($priority1 === $priority2) ...
3
votes
1answer
56 views
Why does GlobIterator produce a different output than the glob function?
I'm trying to use the GlobIterator class.
I am using the same PATTERN as in the glob function, but the GlobIterator produces an empty array.
Example:
$glob = glob('./*');
print_r($glob);
will ...
1
vote
1answer
20 views
SplFixedArray seems slower than array()
Everyone says SplFixedArray is faster than array() but...
<?php
$max_el = 256;
$a = array();
$c = new SplFixedArray($max_el);
for ($i = 0; $i < $max_el; $i++) {
$a[$i] = $c[$i] = ...
1
vote
2answers
36 views
Use non-namespaced library in php
I'm writing an application where all classes are using namespaces, and using spl_autoload_register() to load all classes dynamically.
Now I want to make use of a non-namespaced library (WideImage). ...
1
vote
1answer
32 views
Unexpected behaviour of SplPriorityQueue in a borderline case
This question is related to this one I asked some time ago.
Basically it's about how dequeuing works in some borderline cases. For example:
$queue = new SplPriorityQueue();
$queue->insert('foo', ...
1
vote
1answer
36 views
How SplPriorityQueue works when priority is not an integer?
I was wondering how SplPriorityQueue works when priority is string or int. Quick example:
$queue = new \SplPriorityQueue();
$queue->insert('b', 5);
$queue->insert('c', 5);
...
2
votes
1answer
30 views
Access SplObjectStorage data via Reflection
Is it possible to access the data of SplObjectStorage using Reflection or some other method? When I use print_r on it, I can see there is a private property $storage with an array containing all the ...
1
vote
2answers
44 views
php Iterator - how to save all second to last elements
I am at a loss. I've googled, searched on here, read the php manual for hours but I cant come up with a solution.
I got the following array structure:
[x] => Array
(
...
...
1
vote
1answer
38 views
PHP: how to enable compression for SplFileObject?
I'm creating a CSV file using the SPLFile class:
$z=new SplFileObject('/tmp/test.csv.gz','w');
$arr=[['a','b','c'],[1,2,3],[2,4,8],[3,6,9]];
foreach($arr as $f) $z->fputcsv($f);
Is there a way ...
2
votes
3answers
103 views
Autoloaders in PHP - two running at a time
I understand how to register autoloaders and even how to create one, that's no issue at all. How ever the main issue is - how do you have two auto loaders running side by side for something like:
...
1
vote
2answers
103 views
Using RecursiveIteratorIterator to list files in folder is great. Can I get the parent path and full path as well?
I need to list all files (which have certain extensions) in a folder and its sub-folders. I used RecursiveIteratorIterator as described in @Matthew 's great answer in PHP list all files in directory.
...
1
vote
1answer
47 views
How to serialize a PHP SplHeap for storing into memcached
I am facing a problem in which I would like to store a SplHeap (or any other kinds of Spl heap-like objects such as SplPriorityQueue, SplMinHeap, SplMaxHeap) into a location of my Memcached in order ...
0
votes
0answers
37 views
Getting file printing from job captured
I am developing a print monitor.
But I am having a great difficulty in seeking the job spl file captured
I use the function FindNextPrinterChangeNotification for get information of job.
...
0
votes
1answer
13 views
Detach() and offsetUnset() difference in SPLObjecStorage
what is the diffrenece between Detach() and offsetUnset() in SPLObjecStorage. Looks like they do same thing. if so why there is two method for same job?
2
votes
3answers
55 views
Which SPL interface I must implement to be able to use usort() function on an object?
I have a class that represents a collection entity : it has only one attribute, an array. This class implements \Countable, \IteratorAggregate, and the most important for this question, \ArrayAccess.
...
0
votes
2answers
74 views
How to add an html element at each two items with foreach or SPL?
How can I interrupt a loop and adding an html element at each two iterations? Can a simple foreach do that or something in SPL?
<?php foreach($items as $index=>$item): ?>
...
3
votes
1answer
62 views
Understanding OuterIterator Interface PHP
Im trying to implement OuterIterator interface on my class but not sure what to use in the method getInnerIterator. I know it should return an Iterator but I'm not getting in what circumtances it ...
2
votes
2answers
106 views
PHP: how can I sort and filter an “array”, that is an Object, implementing ArrayAccess?
I have an object that is a collection of objects, behaving like an array. It's a database result object. Something like the following:
$users = User::get();
foreach ($users as $user)
echo ...
1
vote
1answer
42 views
What does the flags parameter of ArrayIterator and ArrayObject do?
The constructors of PHP's ArrayIterator and ArrayObject have a flags parameter that is documented in ArrayObject::setFlags() as follows:
ArrayObject::STD_PROP_LIST
Properties of the object ...
1
vote
2answers
49 views
Clone SplHeap that contains Objects in PHP
I will like to know how can I clone an extended class of SplHeap that contains objects. For example, if FooHeap extends SplHeap, is it possible for FooHeap to have a __clone method and clone its ...
0
votes
2answers
53 views
Fatal Error RecursiveIteratorIterator not found
As the title says, when I instantiate a class I get this message :
Fatal error: Class 'Envato\RecursiveIteratorIterator' not found in C:\Users\rgr\Apache\htdocs\Roland Groza [ 3.0 ...
0
votes
1answer
35 views
Spl, ArrayObject, ArrayObject::STD_PROP_LIST
I'm trying to understand STD_PROP_LIST constant in the documentation but so far i didn´t understand it, and didn´t found any explanation :(
The documentation has the following example:
$a = new ...
0
votes
1answer
60 views
how to use spl_autoload_register
I am just learning how to use spl_autoload_register
I have a folder structure that looks like this:
lib/projectname/home/homepage.php
so if I include the file like this it works:
...
1
vote
3answers
55 views
Does SplObjectStorage leave memory leak references if it destructs while objects are still attached?
If an SplObjectStorage instance destructs while still having some objects attached, does it implicitly detach the objects first, or does a memory leak result by the SplObjectStorage's references to ...
0
votes
2answers
115 views
Assigning object property inside a foreach loop; data does not persist outside foreach loop. Why not? INT and STRING assignment does work
Been knocking my head off the desk on this one all day.
// Iterate over project array to populate release data
for ($i = 0; $i < count($data); $i++) {
...
2
votes
1answer
121 views
ArrayObject doesn't allow me to unset a value, while iterating over it
I've got this notice:
ArrayIterator::next(): Array was modified outside object and internal position is no longer valid in /var/www...
which is produced by this code, at the begining of the ...
2
votes
2answers
93 views
Reverse SPLObjectStorage
I have an SPLObjectStorage object with a Player object as the key and score as the info associated with it. The player objects get added to the storage in order from highest to lowest score, but I'm ...
0
votes
3answers
131 views
memory leak while processing large CSV
I have a script that downloads a large product CSV file, processes the information therein (downloading images and resizing and preparing other data for database insertion), then creates another txt ...
3
votes
1answer
92 views
iterator_to_array truncated output
FROM PHP DOC
iterator_to_array — Copy the iterator into an array
array iterator_to_array ( Traversable $iterator [, bool $use_keys = true ] )
It would work with all Traversable Interface ...
2
votes
1answer
123 views
Iterating through a multi dimensional array with PHP's RecursiveIteratorIterator
I have to cache a tree structure and access it later on. Problem: I really can't figure out how to declare the data so that it fits to RecursiveIteratorIterator etc. It's probably a very n00bish ...
-1
votes
1answer
73 views
PHP OO trouble with abstraction
For the following code I get the error:
Fatal error: Class 'AbstractList' not found in ... on line 5
I'm using php 5.4.7 on a xampp server on windows 7.
TagList.php
<?php
require_once ...
12
votes
5answers
478 views
How is SplSubject/SplObserver useful?
The Standard PHP Library includes what some resources call a reference implementation of the Observer pattern, by way of the SplSubject and SplObserver classes. For the life of me, I can't figure out ...
5
votes
2answers
143 views
If PHP libraries can register their own autoloaders, then why does PSR-0 require they be in uniform directories? [closed]
I'm building a framework (this is a vast simplification -- please don't recommend using an existing framework instead, that's not helpful) into which I would like to be able to integrate other ...
0
votes
1answer
141 views
Get all parent nodes with RecursiveArrayIterator
Essentially, I want to use the
$foo = new RecursiveIteratorIterator(new RecursiveArrayIterator($haystack));
Methodology, but instead of returning a flat array for foreach()ing through, keep the ...
0
votes
1answer
230 views
Android: record decibel from microphone
i've got problem on implementing this functionality in Android...
i need only to output the decibel redorded from the microphone, and it's a thing that i can't understand:
public class Noise extends ...
0
votes
4answers
106 views
Array of Objects in PHP
I've created a class that keeps some information in its attributes. It contains add() method that adds a new set of information to all of the present in this class attributes.
I'd like its objects to ...
2
votes
1answer
70 views
How can I implement extended interfaces?
I'm playing with some design patterns, and wanted to create an example using the SPL's observer pattern. Because it doesn't make sense to have observers and subjects be completely generic, I wanted ...
7
votes
2answers
191 views
Is there a way to make PHP's SplHeap recalculate? (aka: add up-heap to SplHeap?)
I am using an SplHeap to hold graph nodes of a tree with directed edges that will be traversed from the leaves to the root. For this, I precalculate the "fan-in" of nodes and put them into the heap so ...
2
votes
2answers
293 views
Looping through large file runs out of memory
[EDITED OP OUT HERE IS THE SHORT VERSION]
Looping through a file and reading contents, then writing causes the function to fail. It appeared to be a memory issue. This is the three versions I ...
0
votes
3answers
77 views
PHP: What is this object type, and how do I add to it without causing warnings
I've encountered this here and there, and I always worked around it, but I've just gotta know.
Is this an array, an object, or ??? (Let's say I got this via var_export($co))
...
1
vote
1answer
72 views
SplRecurisveDirectoryIterator & hierarchical array
I wanted to play around with some of PHP's iterators and managed to get a solid (from my understanding) build going. My goal was to iterate inside of a parent folder and get 2 nodes down; building a ...
2
votes
2answers
186 views
Apply Trailing Slash to Folders with FilesystemIterator
Having the following snippet to map the contents of the current directory recursively:
$files = new RecursiveIteratorIterator
(
new RecursiveDirectoryIterator('./',
...
1
vote
1answer
324 views
How to use RecursiveIteratorIterator to generate a multi-level HTML menu?
I'm having trouble getting my head around RecrusiveIteratorIterator and relatives to iterate over an multi-dimensional array of pages to build a multi-level menu in PHP.
Normally I just create a ...
1
vote
1answer
577 views
PHP RecursiveDirectoryIterator
So I want to show whole directory and sub directories.
According PHP Doc,
The RecursiveDirectoryIterator provides an interface for iterating recursively over filesystem directories
Here is my ...
0
votes
0answers
112 views
Php, Spl, SimpleXMLIterator
I am trying to understand some guide part, I kind of really lost the logic at the following explanation:
First The Code:Link
Now the guide:
A problem arises in XML when two documents may have ...
0
votes
0answers
80 views
Php, SimpleXMLIterator
I am trying to understand some behavior of the class SimpleXMLIterator,
This is the Code i am working on, What i was trying to understand is why at the output of this code i cant see the "document" ...
9
votes
2answers
710 views
Difference between DirectoryIterator and FileSystemIterator
PHP 5 introduced DirectoryIterator, and PHP 5.3 introduced FileSystemIterator.
FileSystemIterator extends DirectoryIterator, but the documentation fails to say what extra features it brings.
Can you ...
0
votes
1answer
78 views
How can I use one class inside another with the same namespace?
I'm using spl_autoload in my project, but when I try the following code, it gives me this error:
Fatal error: Class 'Router\Route' not found in
//Router File
<?php
namespace Router;
class ...
6
votes
3answers
377 views
InvalidArgumentException vs UnexpectedValueException
When should I use InvalidArgumentException and when UnexpectedValueException? They look the same to me.
Note that one extends LogicException and the other one extends RuntimeException, so the ...

