php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Request #40051 Spotting references
Submitted: 2007-01-07 20:18 UTC Modified: -
Votes:2
Avg. Score:4.0 ± 1.0
Reproduced:2 of 2 (100.0%)
Same Version:1 (50.0%)
Same OS:0 (0.0%)
From: BenBE at omorphia dot de Assigned:
Status: Open Package: Feature/Change Request
PHP Version: 5.2.0 OS: Windows 2K
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: BenBE at omorphia dot de
New email:
PHP Version: OS:

 

 [2007-01-07 20:18 UTC] BenBE at omorphia dot de
Description:
------------
When trying to serialize a variable by hand you need a way to find out, if this variable contains references between two fields or circular references (recursion). Currently there's no way to do this without doing crappy tests (modifying the variables in questions and check for changes being reflected in the other one).

Reproduce code:
---------------
About 50 LOC (See my comment on Spotting References at http://php.net/manual/en/language.references.spot.php)

Expected result:
----------------
//Using internal functionality ;-)
$a = is_ref($var1, $var2);

Actual result:
--------------
Slow reference testing due to much overhead by not being supported by the PHP internals ... internally this would be about 10 LOC IMHO.

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Mar 19 02:01:28 2024 UTC