Created
October 2, 2013 15:33
-
-
Save EricBusch/6795630 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $merchants = $api->getMerchantsById( array( 42742, 675, 4203, 677 ), FALSE, array( '_id', 'name', 'product_count' ) ); | |
| foreach( $merchants as $merchant ) { | |
| echo $merchant['name']; | |
| echo " (ID: " . $merchant['_id'] . ") "; | |
| echo number_format( $merchant['product_count'] ); | |
| echo " product<br />"; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment