Skip to content

Instantly share code, notes, and snippets.

@inoas
Created November 14, 2017 17:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save inoas/7d5be16ddf8be8737b7142a9ec535f66 to your computer and use it in GitHub Desktop.
Save inoas/7d5be16ddf8be8737b7142a9ec535f66 to your computer and use it in GitHub Desktop.
<?php
$qry->where(['OR' => function() use ($values) {
$orConditions = [];
foreach ($values as $i => $value) {
$orConditions['Devices.identifier LIKE' . str_repeat(' ', $i)] = $value;
}
return $orConditions;
}]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment