开发者

How to access var in PHP

开发者 https://www.devze.com 2023-01-25 12:42 出处:网络
I\'m using selenium-rc with php. I want to show in my test the value of CLASSNAME. How can i present the var? I tried to do $this[\'drivers\'][\'CLASSNAME\'] but this is 开发者_开发问答not working for

I'm using selenium-rc with php. I want to show in my test the value of CLASSNAME. How can i present the var? I tried to do $this['drivers']['CLASSNAME'] but this is 开发者_开发问答not working for me.

How to access var in PHP

(This is from the debug)

Thank you!


Looks like it should be:

$this->drivers[0]->CLASSNAME

0

精彩评论

暂无评论...
验证码 换一张
取 消