php变量提取
我的项目有一个变量的数据类型是这样,不能echo,不能遍历,能print_r,请问如果我要提取其中一个值该怎么写,比如:我要提取id的值。testObject([valu...
我的项目有一个变量的数据类型是这样,不能echo,不能遍历,能print_r,请问如果我要提取其中一个值该怎么写,比如:我要提取id的值。
test Object
(
[values:protected] => Array
(
[body] => 名称
[add] => 地区
[number] => 1254368123458
[size] => 10
[start] => 20180624
[expire] => 20180624
[tag] => YW
[url] => http://abc.com
[type] => UTF8
[id] => cc27aW654RFFxca
)
) 展开
test Object
(
[values:protected] => Array
(
[body] => 名称
[add] => 地区
[number] => 1254368123458
[size] => 10
[start] => 20180624
[expire] => 20180624
[tag] => YW
[url] => http://abc.com
[type] => UTF8
[id] => cc27aW654RFFxca
)
) 展开
2个回答
展开全部
class test{
protected $values;
function __construct()
{
$this->values = array(
"body" => "名称",
"id" => "cc27aW654RFFxca"
);
}
function get_values()
{
return $this->values;
}
}
$test = new test();
$values = $test->get_values();
$id = $values['id'];
echo $id;
展开全部
这是个object,可以这样提取:$test->body, $test->size
追问
我的这个变量是这样的:
$message = new test();
$test -> setBody('名称');
$test -> setNumber('1254368123458');
。。。
$test -> setId('cc27aW654RFFxca');
我是在$message 里取值该怎么办,值如问题那样,$message->body也不行
追答
你之前给的信息不足。你这个test是个类,test是类名,$message是对象,应该是$message->body或者是$message->getBody(),前者是直接取属性,但如果属性是private就不能这样取;后者是通过method来取值,这需要你这个类有这个method的定义才行,你可以查一下类的结构里有没有。
这是PHP基础知识,建议通过课程或者教材顺序有系统地学习。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询