정규식 질문 드립니다.
본문
https:/a.com/abc/12345 가 있을때
정규식으로 abc와 12345를 추출할려면 어떻게 해야할까요?
답변 1
정규식보다 간편하게 이런 방식은 어떤가요?
<?php
$str = 'https://a.com/abc/12345/d/e/f';
echo $str;
$url = parse_url($str);
if (empty($url['path']) === false) {
$paths = explode('/', $url['path']);
array_shift($paths);
print_r($paths);
}
?>
답변을 작성하시기 전에 로그인 해주세요.