Guest User

Untitled

a guest
Aug 20th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. PHP parsing from print_r()
  2. <?php
  3. print_r(pingSample());
  4. ?>
  5.  
  6. $blah = pingSample();
  7. echo $blah['PingResult'];
  8.  
  9. $blah = pingSample();
  10. echo $blah->PingResult;
  11.  
  12. $blah = pingSample();
  13. echo $blah->PingResult;
  14.  
  15. echo $blah->PingResult;
Add Comment
Please, Sign In to add comment