Home  >  Article  >  Backend Development  >  php手册上的一个疑问

php手册上的一个疑问

WBOY
WBOYOriginal
2016-06-23 13:30:03951browse

都用::号 
说明这个是静态方法吗?
还是仅仅表示这个类里面有这个方法?


回复讨论(解决方案)

表示有这个方法
大部分不实例化是不能用的。

表示类中有这个方法,是不是静态方法要看文档,应该大部分都不是。

$memcache_obj = memcache_connect("localhost", 11211);/* 面向过程编程 API */memcache_add($memcache_obj, 'var_key', 'test variable', false, 30);/* 面向对象编程 API */$memcache_obj->add('var_key', 'test variable', false, 30);

感谢大家 感谢大家,还有一个问题就是 类里面 self 和__CLASS__ 是不一样的吗?

__CLASS__仅仅是类的名称是字符串
self是类的引用

@傲雪星枫  版主麻烦回复下我这个问题 : 这里算是使用$a 吗? 如果是的话 这个变量并没赋值为什么不报错?

相当于定义了一个变量,但没有赋值。不是错误。

Statement:
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