정규식 문의 드려요 preg_replace('/\<AND>/','<AND>', $response)
본문
<AND> 를 & l t ; AND & g t ; 로 치환하고 싶은데 정규식을 잘 몰라서인지 아래처럼 해서는 되지 않습니다.
$response = preg_replace('/<AND>/',' & l t ; AND & g t ;', $response);
고수님들에게 해결방법 부탁드립니다. --;
답변 4
https://www.php.net/manual/en/function.htmlspecialchars
https://www.php.net/manual/en/function.htmlspecialchars-decode.php
<?php
$response = 'AND<AND><AND>';
$response = htmlspecialchars_decode($response);
$response = htmlspecialchars($response);
echo $response;
?>
htmlspecialchars()함수를 이용하시면 됩니다.
감사합니다.
$response = preg_replace('/<AND>/', '<AND>', $response);
답변을 작성하시기 전에 로그인 해주세요.