You can print in a different way as well.
foreach($result->data as $newdata) //$result is variable that store raw data { printf("name: %s, Pass: %s, nicename: %s <br/>", $newdata->user_login, $newdata->user_pass, $newdata->user_nicename); }
Result will be
name:NICENICE , Pass:$P$BwLHvV7zxcZZ/zW7MY0NXNSmANP.U5., nicename:NICENAME
Shiv singh
source share