How can solve this problem.
I want code to test if there are any of this characters "+" or ":" or "(" or ")" or "&" between [wor] and [/wor] give me true else false.
for example(s):
$text="hi [wor] : [/wor] bye"; // output >> true
$text="hi [wor] & how + [/wor] bye"; // output >> true
$text="hi [wor] can ( [/wor] bye"; // output >> true
$text="hi [wor] ) [/wor] bye"; // output >> true
$text="hi ) [wor] you [/wor] bye + & "; // output >> false