{}
run-icon
main.php
<?php $content = 'test(abcd) : test라는 함수에 영문을 인수로, test(123) : 숫자를 인수로...'; $pattern = '/test\((.*?)\)/i'; preg_match_all($pattern, $content, $matches); print_r($matches);
Output