Jump to content

[SOLVED] An array of objects


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.

Link to comment
https://forums.phpfreaks.com/topic/52426-solved-an-array-of-objects/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.