本文介绍了父对象的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 我有 class thechild { function sayTest() { parent ::测试(); //这个对吧??? } } class theparent { 功能测试() { echo" test"; } function __construct() { $ e = new thechild(); $ e-> sayTest(); } } 我如何让它工作?我试图获得一个班级(A)到 在其中创建另一个班级(B),但是班级B必须能够从班级调用一个函数 A.任何想法? 谢谢 Paul Jenkins www.pjenkins.co.uk 解决方案 I haveclass thechild{function sayTest(){parent::test(); // this right???}}class theparent{function test(){echo "test";}function __construct(){$e = new thechild();$e->sayTest();}}How do i get this to work ? I am trying to get a one class (A) tocreate another class (B) within it, but the class B must be able tocall a function from class A. Any ideas?ThanksPaul Jenkins www.pjenkins.co.uk 解决方案 这篇关于父对象的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云! 09-05 00:55