Jump to content

[SOLVED] Help with member functions


biohazardep

Recommended Posts

Hello, i'm new here, I could use some help with this error i'm getting:

Fatal error: Call to a member function class2_return_name_method() on a non-object

 

This is with the next code:

class Class1 {
var $array_of_class2_objects = array();

function search ($xclass2_object_name) {
	for ($i = 0; $i < count($this->array_of_class2_objects); $i++) {
		if ($this->array_of_class2_objects[$i]->class2_return_name_method() === $xclass2_object_name) { // THE ERROR IS HERE  ???
			return $i;
		}
	}

	return false;
}

function add_class2_object_to_array ($xclass2_object) {
	array_push($this->arreglomochilas, $xobjetomochila);
}
}

 

Can anyone help me with this please? The objects inside the array are of the class2, so i don't know why it says I can't use that method.

 

(PS: I posted this first in OOP help, but it doesn't seem to be read as much, can some moderator help and delete that one please? Sorry if this is against the rules.)

Link to comment
Share on other sites

Please post your full code (or enough to generate the error), and fix your variable names, particularly here:

 

	function add_class2_object_to_array ($xclass2_object) {
	array_push($this->arreglomochilas, $xobjetomochila);
}

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.