Jump to content

Recommended Posts

is there any way for me to simulate this?

 

<?php
class Example {
public $test_var = "Test";
public function test( $message=$this->test_var ) { // <= this is were I get the error message
	echo $message;
}
}
$example  = new Example;
$example->test();
?>

 

any help is appreciated!

Link to comment
https://forums.phpfreaks.com/topic/145134-default-param-in-class-function/
Share on other sites

you cannot put dynamic variable as default parameter.

 

but..u can achieve the same results by this

 

<?php
class Example {
public $test_var = "Test";
public function test( $message="" ) { // <= this is were I get the error message
       if($message == "") $message = $this->test_var;
                    echo $message;
}
}
$example  = new Example;
$example->test();
?>

What's the point of giving test() a parameter when it doesn't need it.  You're assigning that parameter the class variable anyway.  Also, when you call the function you don't give it a parameter...

 

Why not do something like this:

 

class Example {
   public $test_var = "Test";
   public function test() { //       echo $this->test_var;
   }
}
$example  = new Example;
$example->test();
?>

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.