<?php var_dump(preg_match('/^\+?\d+$/', '+123')); var_dump(preg_match('/^\+?\d+$/', '123')); var_dump(preg_match('/^\+?\d+$/', '123+')); var_dump(preg_match('/^\+?\d+$/', '&123')); var_dump(preg_match('/^\+?\d+$/', ' 123')); var_dump(preg_match('/^\+?\d+$/', '+ 123')); ?>
only the first 2 (1) will be true. others are all false (0).
å¤ĒæĨĩ č
įĄæĨĩ č į
source share