php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #33516 Only variables can be passed by reference
Submitted: 2005-06-30 12:30 UTC Modified: 2005-06-30 12:48 UTC
From: bmansion at mamasam dot com Assigned:
Status: Not a bug Package: Variables related
PHP Version: 5.1.0b2 OS: Mac OS X 10.4.1
Private report: No CVE-ID: None
 [2005-06-30 12:30 UTC] bmansion at mamasam dot com
Description:
------------
This code in HTML_QuickForm::addElement() line 594 (version 3.4pl1) :

$this->_elements[] =& $elementObject;
$this->_elementIndex[$elementName] = end(array_keys($this->_elements));

where $elementObject is an HTML_QuickForm_element object returns a Fatal error :

Fatal error: Only variables can be passed by reference in /usr/lib/php/HTML/QuickForm.php on line 594

It worked fine with Php 5.0.4



Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2005-06-30 12:48 UTC] derick@php.net
Thank you for taking the time to write to us, but this is not
a bug. Please double-check the documentation available at
http://www.php.net/manual/ and the instructions on how to report
a bug at http://bugs.php.net/how-to-report.php

Actually, never mind - this is bogus. 

http://no2.php.net/end lists:

mixed end ( array &array )

a return value is not a variable, and thus can not be passed by reference.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 25 12:01:31 2024 UTC