我定义了一个类User,声明了该类的一个方法getName(),为什么我使用$user=new User;$name=$user.getName()会报错?
这是啥
这是啥 2017-03-16 17:24:35
0
2
1013
这是啥
这是啥

reply all(2)
数据分析师

I defined a class User and declared a method getName() of the class. Why does an error appear when I use $user=new User;$name=$user.getName()? -PHP Chinese website Q&A-I defined a class User and declared a method getName() of the class. Why does it report an error when I use $user=new User;$name=$user.getName()? -PHP Chinese website Q&A

Let’s take a look and learn.

刘奇

注意php中对类成员的引用方式,上面的引用应该为$name=$user->getName(),即使用->符号,而不是 
Java中使用的“.”号。

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!