Guest User

Untitled

a guest
May 9th, 2012
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. Display Number up to two decimal point error
  2. $ch = curl_init();
  3. curl_setopt($ch, CURLOPT_URL, `http://orbisadvisors.redinews.com/tools/XM01? queryid=QJ33020&fields=Last&fields=Change&fields=Chperc&symbol=BSZ`);
  4. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  5. $sp= curl_exec ($ch);
  6. $sp1=explode(" ",$sp);
  7. echo "????".$lsp1=$sp1[4];
  8. printf("%.2f",$lsp1);
  9. print_r($sp1);
  10. curl_close ($ch);
  11.  
  12. $ch = curl_init();
  13. curl_setopt($ch, CURLOPT_URL, 'http://orbisadvisors.redinews.com/tools/XM01?queryid=QJ33020&fields=Last&fields=Change&fields=Chperc&symbol=BSZ');
  14. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  15. $sp= curl_exec ($ch);
  16. curl_close ($ch);
  17.  
  18. $xml = simplexml_load_string($sp);
  19. $last = sprintf("+%.2f", $xml->Stock->Last); // 1280.70
Advertisement
Add Comment
Please, Sign In to add comment