aruncourage Posted April 27, 2010 Share Posted April 27, 2010 Dear friends ..... <?php class Test extends DATA { function __construct() { parent::__construct(); echo 'This is child class'; } } class data { function __construct() { echo 'This is parent class'.'<br>'; } } $test=new Test(); ?> That is my code . I have answer. I put the class name differ from in that two classes. is it possible? is class name is not case sensitive ? please Explain me Link to comment https://forums.phpfreaks.com/topic/199899-class-name-dobut/ Share on other sites More sharing options...
trq Posted April 27, 2010 Share Posted April 27, 2010 Sorry, I'm not sure I understand the question. In fact, I don't. Link to comment https://forums.phpfreaks.com/topic/199899-class-name-dobut/#findComment-1049226 Share on other sites More sharing options...
Mchl Posted April 27, 2010 Share Posted April 27, 2010 Class names (as well as function names) are not case sensitive. Link to comment https://forums.phpfreaks.com/topic/199899-class-name-dobut/#findComment-1049227 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.