ionik Posted October 29, 2008 Share Posted October 29, 2008 ...well I have never seen this done before and until now didn't think I twas entirely possible.... but i ran into a situation with referencing when working with the zend_framework the solution was $this->form->$formLeft(); which $formLeft is a var reference to a method in the form class which is loaded automatically. Is there any coding standard on this? I was wondering this after this worked and if there is a standard what is it and Is this allowed? I searched and came up with nothing... Link to comment https://forums.phpfreaks.com/topic/130636-question-about-method-reference-coding-standard/ Share on other sites More sharing options...
bobbinsbro Posted October 29, 2008 Share Posted October 29, 2008 i think php allows function referencing like this: function bar(){ } $foo = 'bar'; //call bar() with reference $bla = $foo(); if that's what you mean... Link to comment https://forums.phpfreaks.com/topic/130636-question-about-method-reference-coding-standard/#findComment-677784 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.