php:从数组中提取值

时间:2017-05-11 20:10:03

标签: php arrays

我有一个存储在变量中的数组 - 至少我认为它是一个数组 - 并希望从中获取一个值。

这是$myvar记录的内容以及为什么我认为它是一个数组:

Array
(
    [numberofhits] => 5
)

如何将值5转换为变量?

尝试了一些可能的可能性,例如

 $numhits = $myvar->numberofhits;

But $numhits is empty.

感谢您的任何建议。

0 个答案:

没有答案