정규식관련 질문입니다! ㅠㅠ
본문
$wr_content = "<td style='width:400px;height:40px;'>aaaaaaaaa</td>"
일때 여기서 php 정규식을 이용해서 width:400px; 와 height:40px;의 값을 변경해주고싶은데요 ㅠㅠ
width:100%, height:100%; 이런식으로 바꿔주고 싶은데..
저 width height값이 고정이 아니라서 일반 문자열 변경으로는 힘들 것 같아서 정규식으로 하면
될거같은데 혹시 어떻게 하는지 아시는분있으신가요?ㅠㅠ
답변 1
참조하시죠.
$wr_content = "<td style='width:400px;height:40px;'>aaaaaaaaa</td>";
$w = "100%";
$h = "100%";
$wr_content = preg_replace("#width:400px;height:40px;#i", "width:{$w};height:{$h};", $wr_content);
echo htmlspecialchars($wr_content);
답변을 작성하시기 전에 로그인 해주세요.