Related questions
Calling a function within a Class method?
I have been trying to figure out how to go about doing this but I am not quite sure how.
Here is an example of what I am trying to do:
class test {
public newTest(){
function bigTest(){
//Big Test Here
}
…
Call-time pass-by-reference has been removed
Possible Duplicate:
Call-time pass-by-reference has been deprecated
While it may be documented somewhere on the internet, I cannot find a solution to my problem. Since the PHP 5.4 update, pass-by-references have been removed.
Now I have a problem with this section …