PHP: get data from XML string – Ebay API
I have a simple problem getting data from an eBay API string. I want to format numbers to 2 digits 8.0 > 8.00 This works fine echo $price; // output: 8.0 But... echo number_format($price, 2); // output: (nothing) A var_dump…