PHP-我需要帮助,如何访问stdClass对象中的特定数据?

时间:2018-09-06 15:24:02

标签: php soap stdclass

stdClass Object ( 
 [Met01InResult] => {
 "Matricula":"UXX00000001",
 "NoEmpleado":"",
 "Nombre":"pruebas.universidad",
 "Estatus":"10",
 "Mensaje":"Operación exitosa.",
 "Iddireccion":0,
 "Direccion":"ALUMNADO",
 "IdPuesto":0,
 "Puesto":"ALUMNO",
 "Esprofesor":false} 
) 

1 个答案:

答案 0 :(得分:0)

要访问对象内部的属性,必须使用$object->Met01InResult(用包含该对象的变量替换对象)。 此外,密钥Met01InResult包含一个JSON字符串,因此您必须使用json_decode将其转换为数组(例如)。

为继续,我提供此示例。

// Your Object vairable ($object)
$result = json_decode($object->Met01InResult, true); //the true parameter ensure $result   to be an assoc' array
//Result contains an array with the json data within Met01InResult.

希望这会有所帮助。