时间:2021-07-01 10:21:17 帮助过:5人阅读
Catchable fatal error: Object of class massage_gether could not be converted to string in \xampp\htdocs\asxmt_wx\test.php on line 26
sub.php代码class massage_gether{ function main_menu_test() { //主菜单内容 $mytext = '欢迎光临总店微信公众服务平台,请选择数字您所需的服务:'. "\n".'(1)会员卡积分查询'."\n".'(2)商场活动查询'."\n". '(4)其他服务'."\n".'输入@可以返回主菜单'; return $mytext; } }
index.php代码include("sub.php");$shower = new massage_gether();$shower -> main_menu_test();echo $shower; //这个是第26行
$shower = new massage_gether();
echo $shower -> main_menu_test();
$shower是一个实例化对象。
受教了,谢谢!