Jump to content

Using properties or parms


Recommended Posts

If I want to pass data to a class method I can do it one of two ways:

 

$result = $cls1->updateit($id, $name,$address);

 

or

 

$cls1->id = 100;

$cls1->name = "me";

$cls1->address = "mine";

$result = $cls1->updateit();

 

Which is preferred and why?

 

Thanks,

Patrick

 

Link to comment
Share on other sites

I guess...but what if it doesn't validate? The old value is gone and can't be brought back.

 

...the first option is also less code :)

 

furthermore...i rarely ever have public properties inside my classes. all access to the data (read and write) goes through a function. that way, later on, if I want to change how it is read/written (maybe use title instead of name), i just modify the class instead of all the code using it

Link to comment
Share on other sites

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.