ID: 9195
Updated by: jan
Reported By: [EMAIL PROTECTED]
Old Status: Open
Status: Analyzed
Bug Type: Feature/Change Request
Operating System: Linux
PHP Version: 4.0.2
New Comment:

please take part in the discussion about the upcoming ZendEngine2 on
[EMAIL PROTECTED] 

Previous Comments:
------------------------------------------------------------------------

[2001-02-09 13:00:53] [EMAIL PROTECTED]

I'm requesting that the default function arguments for a class method be
able to reference the class variable members in it's definition. 

Here is an example of it's use:

class searchclass {

        var $hits;
        var $results;

        function save($filename, $start = 0, $end = $this->hits){ /* <- this
returns Parse error: */
                if($fp = @fopen($filename, "w")){
                        for($i = $start; $i < $end; $i++){
                                fwrite($fp, implode("|", $this->results[$i]));
                        }
                }else{
                        return false;
                }
        }

        function search(){
                /* ... */
        }

}

------------------------------------------------------------------------



Edit this bug report at http://bugs.php.net/?id=9195&edit=1


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to