我有以下json字符串,我想从中检索电子邮件地址.我怎么在PHP中做到这一点?
{"communications":{"communication":[{"@array":"true","@id":"23101384","@uri":"xyz/v1/Communications/1111","household":{"@id":"111111","@uri":"xyz/v1/Households/5465465"},"person":{"@id":"","@uri":""},"communicationType":{"@id":"1","@uri":"xyz/v1/Communications/CommunicationTypes/1","name":"Home Phone"},"communicationGeneralType":"Telephone","communicationValue":"1111","searchCommunicationValue":"2693240758","listed":"true","communicationComment":null,"createdDate":"2008-11-10T12:31:26","lastUpdatedDate":"2009-08-11T23:40:02"},{"@array":"true","@id":"11111","@uri":"xyz/v1/Communications/111111111","household":{"@id":"14436295","@uri":"xyz/v1/Households/11111"},"person":{"@id":"2222222","@uri":"xyz/v1/People/22222222"},"communicationType":{"@id":"2","@uri":"xyz/v1/Communications/CommunicationTypes/2","name":"Work Phone"},"communicationGeneralType":"Telephone","communicationValue":"11111","searchCommunicationValue":"789787987","listed":"false","communicationComment":null,"createdDate":"2009-08-09T15:49:27","lastUpdatedDate":"2009-08-11T23:40:02"},{"@array":"true","@id":"11111","@uri":"xyz/v1/Communications/11111","household":{"@id":"1111","@uri":"xyz/v1/Households/1111"},"person":{"@id":"244404","@uri":"xyz/v1/People/1111"},"communicationType":{"@id":"3","@uri":"xyz/v1/Communications/CommunicationTypes/3","name":"Mobile"},"communicationGeneralType":"Telephone","communicationValue":"22222","searchCommunicationValue":"5475454","listed":"true","communicationComment":null,"createdDate":"2008-11-10T12:31:26","lastUpdatedDate":"2009-08-11T23:40:02"},{"@array":"true","@id":"15454","@uri":"xyz/v1/Communications/111111","household":{"@id":"14436295","@uri":"xyz/v1/Households/1111"},"person":{"@id":"244444474","@uri":"xyz/v1/People/111111"},"communicationType":{"@id":"4","@uri":"xyz/v1/Communications/CommunicationTypes/4","name":"Email"},"communicationGeneralType":"Email","communicationValue":"email@needthis.com","searchCommunicationValue":"email@needthis.com","listed":"true","communicationComment":null,"createdDate":"2008-11-10T12:31:26","lastUpdatedDate":"2009-08-11T23:39:06"}]}}
Run Code Online (Sandbox Code Playgroud)
Pas*_*TIN 14
考虑到你有json_decode这样的数据:
$data = json_decode($json);
Run Code Online (Sandbox Code Playgroud)
您可以使用(嗯,如果与Xdebug扩展一起使用它的输出看起来更好,这对开发机器来说很好,顺便说一句)知道你的数据中有什么:var_dump
// Allows you to know what's in the data ;-)
var_dump($data);
Run Code Online (Sandbox Code Playgroud)
你会得到这样的东西:
object(stdClass)[1]
public 'communications' =>
object(stdClass)[2]
public 'communication' =>
array
0 =>
object(stdClass)[3]
public '@array' => string 'true' (length=4)
public '@id' => string '23101384' (length=8)
public '@uri' => string 'xyz/v1/Communications/1111' (length=26)
public 'household' =>
object(stdClass)[4]
public '@id' => string '111111' (length=6)
public '@uri' => string 'xyz/v1/Households/5465465' (length=25)
public 'person' =>
object(stdClass)[5]
public '@id' => string '' (length=0)
public '@uri' => string '' (length=0)
public 'communicationType' =>
object(stdClass)[6]
public '@id' => string '1' (length=1)
public '@uri' => string 'xyz/v1/Communications/CommunicationTypes/1' (length=42)
public 'name' => string 'Home Phone' (length=10)
public 'communicationGeneralType' => string 'Telephone' (length=9)
public 'communicationValue' => string '1111' (length=4)
public 'searchCommunicationValue' => string '2693240758' (length=10)
public 'listed' => string 'true' (length=4)
public 'communicationComment' => null
public 'createdDate' => string '2008-11-10T12:31:26' (length=19)
public 'lastUpdatedDate' => string '2009-08-11T23:40:02' (length=19)
1 =>
object(stdClass)[7]
public '@array' => string 'true' (length=4)
public '@id' => string '11111' (length=5)
public '@uri' => string 'xyz/v1/Communications/111111111' (length=31)
public 'household' =>
object(stdClass)[8]
public '@id' => string '14436295' (length=8)
public '@uri' => string 'xyz/v1/Households/11111' (length=23)
public 'person' =>
object(stdClass)[9]
public '@id' => string '2222222' (length=7)
public '@uri' => string 'xyz/v1/People/22222222' (length=22)
public 'communicationType' =>
object(stdClass)[10]
public '@id' => string '2' (length=1)
public '@uri' => string 'xyz/v1/Communications/CommunicationTypes/2' (length=42)
public 'name' => string 'Work Phone' (length=10)
public 'communicationGeneralType' => string 'Telephone' (length=9)
public 'communicationValue' => string '11111' (length=5)
public 'searchCommunicationValue' => string '789787987' (length=9)
public 'listed' => string 'false' (length=5)
public 'communicationComment' => null
public 'createdDate' => string '2009-08-09T15:49:27' (length=19)
public 'lastUpdatedDate' => string '2009-08-11T23:40:02' (length=19)
2 =>
object(stdClass)[11]
public '@array' => string 'true' (length=4)
public '@id' => string '11111' (length=5)
public '@uri' => string 'xyz/v1/Communications/11111' (length=27)
public 'household' =>
object(stdClass)[12]
public '@id' => string '1111' (length=4)
public '@uri' => string 'xyz/v1/Households/1111' (length=22)
public 'person' =>
object(stdClass)[13]
public '@id' => string '244404' (length=6)
public '@uri' => string 'xyz/v1/People/1111' (length=18)
public 'communicationType' =>
object(stdClass)[14]
public '@id' => string '3' (length=1)
public '@uri' => string 'xyz/v1/Communications/CommunicationTypes/3' (length=42)
public 'name' => string 'Mobile' (length=6)
public 'communicationGeneralType' => string 'Telephone' (length=9)
public 'communicationValue' => string '22222' (length=5)
public 'searchCommunicationValue' => string '5475454' (length=7)
public 'listed' => string 'true' (length=4)
public 'communicationComment' => null
public 'createdDate' => string '2008-11-10T12:31:26' (length=19)
public 'lastUpdatedDate' => string '2009-08-11T23:40:02' (length=19)
3 =>
object(stdClass)[15]
public '@array' => string 'true' (length=4)
public '@id' => string '15454' (length=5)
public '@uri' => string 'xyz/v1/Communications/111111' (length=28)
public 'household' =>
object(stdClass)[16]
public '@id' => string '14436295' (length=8)
public '@uri' => string 'xyz/v1/Households/1111' (length=22)
public 'person' =>
object(stdClass)[17]
public '@id' => string '244444474' (length=9)
public '@uri' => string 'xyz/v1/People/111111' (length=20)
public 'communicationType' =>
object(stdClass)[18]
public '@id' => string '4' (length=1)
public '@uri' => string 'xyz/v1/Communications/CommunicationTypes/4' (length=42)
public 'name' => string 'Email' (length=5)
public 'communicationGeneralType' => string 'Email' (length=5)
public 'communicationValue' => string 'email@needthis.com' (length=18)
public 'searchCommunicationValue' => string 'email@needthis.com' (length=18)
public 'listed' => string 'true' (length=4)
public 'communicationComment' => null
public 'createdDate' => string '2008-11-10T12:31:26' (length=19)
public 'lastUpdatedDate' => string '2009-08-11T23:39:06' (length=19)
Run Code Online (Sandbox Code Playgroud)
这意味着您应该可以使用以下内容访问您正在查找的数据:
foreach ($data->communications->communication as $communication) {
if ($communication->communicationGeneralType == 'Email') {
var_dump($communication->communicationValue);
var_dump($communication->searchCommunicationValue);
}
}
Run Code Online (Sandbox Code Playgroud)
哪个会给你:
string 'email@needthis.com' (length=18)
string 'email@needthis.com' (length=18)
Run Code Online (Sandbox Code Playgroud)
" communications"是一个对象,它包含" communication",它是一个对象数组,每个对象包含一个communicationGeneralType,它允许您确定当前通信是否是电子邮件.
无论如何,您可以使用communicationValue或searchCommunicationValue字段.
而且我没有真正看到这样做的方法而不迭代每个communication元素......
希望这可以帮助!
小智 8
关于它如何变得如此惰性的另一个转折就是:
$json_object = '{"communications":
{"communication":
[{"@array":"true","@id":"23101384","@uri":"xyz/v1/Communications/1111","household":
{"@id":"111111","@uri":"xyz/v1/Households/5465465"},
"person": {"@id":"","@uri":""},
"communicationType":{"@id":"1","@uri":"xyz/v1/Communications/CommunicationTypes/1","name":"Home Phone"},
"communicationGeneralType":"Telephone","communicationValue":"1111","searchCommunicationValue":"2693240758",
"listed":"true","communicationComment":null,"createdDate":"2008-11-10T12:31:26","lastUpdatedDate":"2009-08-11T23:40:02"},
{"@array":"true","@id":"11111","@uri":"xyz/v1/Communications/111111111","household":
{"@id":"14436295","@uri":"xyz/v1/Households/11111"},
"person": {"@id":"2222222","@uri":"xyz/v1/People/22222222"},
"communicationType": {"@id":"2","@uri":"xyz/v1/Communications/CommunicationTypes/2","name":"Work Phone"},
"communicationGeneralType":"Telephone","communicationValue":"11111","searchCommunicationValue":"789787987","listed":"false",
"communicationComment":null,"createdDate":"2009-08-09T15:49:27","lastUpdatedDate":"2009-08-11T23:40:02"},
{"@array":"true","@id":"11111","@uri":"xyz/v1/Communications/11111","household": {"@id":"1111","@uri":"xyz/v1/Households/1111"},
"person":{"@id":"244404","@uri":"xyz/v1/People/1111"},
"communicationType":{"@id":"3","@uri":"xyz/v1/Communications/CommunicationTypes/3","name":"Mobile"},
"communicationGeneralType":"Telephone","communicationValue":"22222","searchCommunicationValue":"5475454","listed":"true",
"communicationComment":null,"createdDate":"2008-11-10T12:31:26","lastUpdatedDate":"2009-08-11T23:40:02"},
{"@array":"true","@id":"15454","@uri":"xyz/v1/Communications/111111","household":{"@id":"14436295","@uri":"xyz/v1/Households/1111"},
"person":{"@id":"244444474","@uri":"xyz/v1/People/111111"},
"communicationType":{"@id":"4","@uri":"xyz/v1/Communications/CommunicationTypes/4","name":"Email"},
"communicationGeneralType":"Email","communicationValue":"email@needthis.com","searchCommunicationValue":"email@needthis.com","listed":"true",
"communicationComment":null,"createdDate":"2008-11-10T12:31:26","lastUpdatedDate":"2009-08-11T23:39:06"}
]
}
}';
$json_decoded = json_decode($json_object);
echo "email: ".$json_decoded->communications->communication[3]->communicationValue."<br />";
Run Code Online (Sandbox Code Playgroud)
你可以用json_decode().你的示例字符串对我来说有点复杂,但是作为我自己的一个例子:
$json = '{"a":"apples","b":["bananas","boysenberries"],"c":"carrots"}';
$arr = json_decode($json);
echo $arr['a']; // "apples"
echo $arr['b'][0]; // "bananas"
Run Code Online (Sandbox Code Playgroud)