biohazardep Posted May 22, 2007 Share Posted May 22, 2007 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.) Quote Link to comment https://forums.phpfreaks.com/topic/52441-solved-help-with-member-functions/ Share on other sites More sharing options...
btherl Posted May 22, 2007 Share Posted May 22, 2007 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); } Quote Link to comment https://forums.phpfreaks.com/topic/52441-solved-help-with-member-functions/#findComment-258782 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.