php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Request #62200 ArrayObject should implement __set_state()
Submitted: 2012-05-31 23:50 UTC Modified: 2016-06-29 17:04 UTC
Votes:2
Avg. Score:4.5 ± 0.5
Reproduced:2 of 2 (100.0%)
Same Version:1 (50.0%)
Same OS:2 (100.0%)
From: bkam at citiesunlimited dot com Assigned:
Status: Closed Package: SPL related
PHP Version: 5.4.3 OS: All
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If this is not your bug, you can add a comment by following this link.
If this is your bug, but you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: bkam at citiesunlimited dot com
New email:
PHP Version: OS:

 

 [2012-05-31 23:50 UTC] bkam at citiesunlimited dot com
Description:
------------
Pretty simple, var_export of SPL traversibles shows Class::__set_state([]) but 
actually calling that function throws an undefined method error.

This is specifically true for ArrayObject, but generally true for all the 
traversibles with inaccessible internal structures.

Test script:
---------------
//first
$a = new ArrayObject();
$a['key'] = 'value';
var_export($a);

// returns
//"ArrayObject::__set_state(array( 'key' => 'value', ))"

$ao = ArrayObject::__set_state(['thing' => 'value']);
//returns
//"Fatal error: Call to undefined method ArrayObject::__set_state()"

Expected result:
----------------
"ArrayObject::__set_state(array( 'key' => 'value', ))"

""

Actual result:
--------------
"Fatal error: Call to undefined method ArrayObject::__set_state()"

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2012-06-04 23:54 UTC] johannes@php.net
-Type: Bug +Type: Documentation Problem
 [2012-06-04 23:54 UTC] johannes@php.net
This should be cleared in the documentation. The code returned is valid PHP code, while it won't necessarily run successful.

var_export() assumes a __set_state() exists, but there are cases where it doesn't and there are cases where for different reasons it never can in a sufficient way. Especially for internal classes where we can't export the full state.
 [2012-06-05 00:11 UTC] bkam at citiesunlimited dot com
For this class, that's not an acceptable position to take.  Consider that I can 
write:

class AdaptorArrayObject extends \ArrayObject {
	public static function __set_state(Array $data) {
		$this->exchangeArray($data);
	}
}

//::then::
//some data that's structured appropriately for ArrayObject state
$oldArrayObjectData = $existingArrayObject->getArrayCopy();

$newArrayObject = AdaptorArrayObject::__set_state($oldArrayObjectData);

You already wrote the functions necessary to implement __set_state()

Why is it on ME to subclass just to call the functions to make this work?  
Functions are written, call them internally and expose __set_state. Easy peasy.

The other SPL data structures are indeed much more complex internally (object 
keys, kv meta data, and value linking), so it makes sense not to offer external 
functions like exchangeArray or getArrayCopy.  But ArrayObject is supposed to be 
much closer to [] is it not? just wrapped in object reference semantics and SPL 
API goodies?

Please reconsider for ArrayObject.
 [2016-06-29 17:03 UTC] cmb@php.net
Automatic comment from SVN on behalf of cmb
Revision: http://svn.php.net/viewvc/?view=revision&revision=339526
Log: Fix #62200: __set_state() not implemented
 [2016-06-29 17:04 UTC] cmb@php.net
-Summary: __set_state() not implemented +Summary: ArrayObject should implement __set_state() -Type: Documentation Problem +Type: Feature/Change Request
 [2016-06-29 17:04 UTC] cmb@php.net
I have fixed the documentation, and change this ticket to feature
request.
 [2020-02-07 06:07 UTC] phpdocbot@php.net
Automatic comment on behalf of cmb
Revision: http://git.php.net/?p=doc/en.git;a=commit;h=ec77057bf375ae4d50ffe24aa6f6a5dc629c10f3
Log: Fix #62200: __set_state() not implemented
 [2020-02-07 06:07 UTC] phpdocbot@php.net
-Status: Open +Status: Closed
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 26 22:01:29 2024 UTC