1

Mandrill app return this : [{"email":"[email protected]","status":"sent","_id":"234we4fvba4a3e8517d7a9","reject_reason":null}]

I need to get only the value of "status". Something like this: echo $result['status']; How can I do it in PHP?

0

2 Answers 2

2

use json_decode() to get the status.. like this :

<?php

$str = '[{"email":"[email protected]","status":"sent","_id":"234we4fvba4a3e8517d7a9","reject_reason":null}]';
$json = json_decode($str, true);
echo $json[0]['status'];

 ?>
Sign up to request clarification or add additional context in comments.

Comments

0

you can use like

$json = '[{"email":"[email protected]","status":"sent","_id":"234we4fvba4a3e8517d7a9","reject_reason":null}]';
$json_array = json_decode($json);
print "<pre>";print_r($json_array[0]->status);

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.