아래 점을 정규표현식으로 대체하려면?
본문
$list[$idx][$i]['href'] = './board.php?bo_table='.$search_table[$idx].'&wr_id='.$row['wr_parent'];
위 코드가 아래처럼 출력됩니다.
./board.php?bo_table=notice&wr_id=10
그런데, 위 코드가 bbs/search.php 코어 단에 있는데,
최신글에서 preg_replace 이용해 점을 G5_BBS_URL 적용한 효과가 일어나게 하려는데...
$list[$idx][$i]['href'] = preg_replace( /패턴/, G5_BBS_URL, $list[$idx][$i]['href'] );
답변 1
$list[$idx][$i]['href'] = preg_replace( "/\.\/board.php/" , G5_BBS_URL, $list[$idx][$i]['href'] );
답변을 작성하시기 전에 로그인 해주세요.