Skip to content

Instantly share code, notes, and snippets.

@chartjes
Created February 23, 2012 21:38
Show Gist options
  • Save chartjes/1895207 to your computer and use it in GitHub Desktop.
Save chartjes/1895207 to your computer and use it in GitHub Desktop.
$requiredFields = array(
'price',
'name',
'description',
'type',
'shippingCost',
'vendorSku'
);
$valid = true;
foreach ($storeData['products'] as $rawProduct) {
$tmp = array_intersect($requiredFields, array_keys($rawProduct));
if (count($tmp) !== count($requiredFields)) { $valid = false; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment