How to Search an Array in php like SQL LIKE Statement code example
Example: like %% inside the array php
preg_match('~' . preg_quote('.SEARCH_ITEM.', '~') . '~', 'STRING');
preg_match('~' . preg_quote('.SEARCH_ITEM.', '~') . '~', 'STRING');