|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2000-10-05 17:51 UTC] stas@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Dec 15 12:00:01 2025 UTC |
//I have a variable-function in my class. class myclass { var $func="myfunc"; function test() { $this->func("hello"); //This doesn't work!! //This is to be done to make it work: $temp=$this->func; $temp("hello"); //This is to silly, I consider this a bug.. //If it ain't it sould be implementet in the todo. } } //This sould work no mather the setup. //I've compiled php with mysql,sybase, shmem