<?php $re = '/(?:\bif\((?=[^()]*\))|\G(?!^))(.*?==.*?)(?:-(?:AND|OR)-|\)$)/'; $str = 'if(conditionA==valueA-AND-conditionB==valueB-OR-conditionC==valueC)'; preg_match_all($re, $str, $matches); print_r($matches[1]);
You have javascript disabled. You will not be able to edit any code.