Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
36 views

Destroying an ArrayObject in PHP

I was looking for the __destroy() method in ArrayObject but found no implementation. If I set the variable containing an ArrayObject to NULL, will it correctly destroy all the objects stored in it and ...
4
votes
2answers
141 views

array_slice (or other array_* functions) on ArrayObject

I have a question regarding ArrayObject. I wanted to use array_slice in an ArrayObject class and I couldn't. Is there a way to do it, without needing to write an "slice" method to the class that ...
4
votes
4answers
2k views

PHP Array and ArrayObject

which one should be used to manipulating data, Array or Array Object? Like search,sort and other array manipulations.
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: ...
1
vote
3answers
240 views

Extending ArrayObject in PHP properly?

Problem: I am trying to extend PHP's ArrayObject as shown below. Unfortunately I can't get it to work properly when setting multi-dimensional objects and instead an error thrown as I have the strict ...
1
vote
3answers
109 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
3answers
157 views

Reset the Internal Pointer Value of a PHP Array (ArrayObject)

Consider a simple PHP ArrayObject with two items. $ao = new ArrayObject(); $ao[] = 'a1'; // [0] => a1 $ao[] = 'a2'; // [1] => a2 Then delete the last item and add a new item. ...
1
vote
1answer
474 views

Does PHP's ArrayObject have an in_array equivalent?

PHP has an in_array function for checking if a particular value exists in an native array/collection. I'm looking for an equivalent function/method for ArrayObject, but none of the methods appear to ...
0
votes
0answers
17 views

Mysqli_fetch_object and ArrayObject not working

I'm tring to use ArrayObject with mysqli_fetch_object(). So far i've tried $row = $query->fetch_object("mysqliResult"); mysqliResult looks like this: class mysqliResult extends ArrayObject { ...
0
votes
4answers
52 views

ArrayObject iteration

Problem: ArrayObject works as expected when the values are set or read manually, but when using a function (foreach for example) to iterate over it, things gets wicked. It doesn't call the offset* ...
0
votes
2answers
24 views

offsetSet not being called in ArrayObject

Example php code: class TestArrayObject extends ArrayObject { function offsetSet($index,$val){ echo $index.':'.$val.PHP_EOL; } } $s = new TestArrayObject(); //test 1 $s['a'] = ...
0
votes
1answer
48 views

Magic methods don't work inside ArrayObjects?

I ran accross a problem with my code that I could not explain. The only thing I can think of is that magic methods just don't work inside of ArrayObjects. For instance, given the following class: ...
0
votes
1answer
41 views

print PHP value in an array

Hello I am trying to print a specific value from an array of objects. I am trying to get a value from an array name $allPhotos with a object's property of "nme"'s value. This is what im trying: echo ...
0
votes
1answer
34 views

ArrayObject class inheritance broken in Joomla 1.7?

I've written this small test class just to illustrate my problem When working with larger amounts of data I usually create a class that inherits from ArrayObject to better structure my objects and to ...
0
votes
2answers
137 views

Converting a json object to an associative array

I have this array which is retrieved by a json_encode().When I execute $.getJSON('beta.php' , function(data){ console.log(data); }); I get the result as follows [ Object { StuId="1", ...
0
votes
1answer
167 views

Iterating over multi-level ArrayObject() to print out on-screen hierarchical view

I have a ArrayObject structure that is quite complex to output, it can/and consists of multiple levels of relationship e.g. Parent -> Child -> Children -> Child etc. Structures like this are quite ...
0
votes
2answers
72 views

Sorting an array

If I have an array of data, what is the best option for sorting them so they are displayed in ascending alphabetical order based on key 2 of the second array within each ArrayObject? Data ...
0
votes
4answers
642 views

Which PHP interface allows objects' properties to be accessible with array notation?

Which PHP SPL interface allows objects to do this: $object->month = 'january'; echo $object['month']; // january $record['day'] = 'saturday'; echo $record->day; // saturday e.g. such as in ...