Home > Backend Development > PHP Tutorial > 这个调用很奇怪,请看

这个调用很奇怪,请看

WBOY
Release: 2016-06-23 13:18:22
Original
1037 people have browsed it


//A.class.php

public function updateLastValidTel()
{
$oCRMCustomerProc = new CRM_CustomerProc();
$time =$oCRMCustomerProc->getLastValidTelTime();
$count=$oCRMCustomerProc->updateLastValidTel($time);
         }



在B文件中调用

//B.php

MarketDaily::updateLastValidTel();

updateLastValidTel()又不是静态的方法,为什么可以这样调用啊? 求大师。。


回复讨论(解决方案)

只要你的 php 版本低于 5.4,这样写一点问题也没有
静态方法 才可以用 静态方式 调用,是 php5.3 开始引入的规则

这里说的很详细的,欢迎查看
http://bbs.csdn.net/topics/350118147


只要你的 php 版本低于 5.4,这样写一点问题也没有
静态方法 才可以用 静态方式 调用,是 php5.3 开始引入的规则[/
好吧

这里说的很详细的,欢迎查看
http://bbs.csdn.net/topics/350118147


非常好!
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template