Heim  >  Artikel  >  Backend-Entwicklung  >  php5.4.16版本com_set()函数改成啥了

php5.4.16版本com_set()函数改成啥了

WBOY
WBOYOriginal
2016-06-23 14:00:371032Durchsuche

低版本php在com组件里,有个com_set()函数,但php5以后就没有这个函数了,请问这个函数改成什么函数了?如何使用?谢谢!


回复讨论(解决方案)

// do this   $obj->property = $value;//现在com直接赋值就可以了 等同于com_set   // instead of this:   com_set($obj, 'property', $value);//上面的 $obj->property = $value同样可以实现com_set的功能

com_invoke($obj,"FETCH");  //取得数值

这句话在php5里,改如何写啊?

com_invoke($obj,"FETCH");  //取得数值

这句话在php5里,改如何写啊?
就是对象的获取属性的方式啊 $obj->FETCH;

谢谢你的耐心解答

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn