Skip to content

Instantly share code, notes, and snippets.

@VSeryoga
Last active February 26, 2017 13:40
Show Gist options
  • Save VSeryoga/67a875ad52dc6ab85df96cf00bcea85d to your computer and use it in GitHub Desktop.
Save VSeryoga/67a875ad52dc6ab85df96cf00bcea85d to your computer and use it in GitHub Desktop.
Filter bitrix (c позапросом)
<?
$arrFilter = array(
array(
"LOGIC" => "OR",
'NAME' => "%".$_GET['q']."%",
'PROPERTY_ARTNUMBER' => "%".(string)$_GET['q']."%",
'ID' => CIBlockElement::SubQuery("PROPERTY_CML2_LINK", array(
"PROPERTY_ARTNUMBER" => "%".(string)$_GET['q']."%",
)),
)
);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment