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] and 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