php 5.5를 사용하다가 보니깐 preg_replace 그누보드 스킨이나 아미나 스킨시 /e 옵션 준것에 오류가 발생하더라구요..
이문제를 해결하기 위해서 preg_replace_callback 을 사용하라구 하네요..
예. amina/lib/view.lib.php
625 라인 근처
//Video
원본: $content = preg_replace("/{동영상\:([^}]*)}/ie", "amina_video_content('\\1','{$mobile}')", $content);
수정: $content = preg_replace_callback("/{동영상\:([^}]*)}/i",
function ($matches) {
amina_video_content('$matches[1]','{$mobile}');
}, $content);
==================================================================================
//SoundCloud
원본 : $content = preg_replace("/\[soundcloud(.*)\/\]/ies", "amina_soundcloud('\\1')", $content);
수정: $content = preg_replace_callback("/\[soundcloud(.*)\/\]/is",
function ($matches) {
amina_soundcloud('$matches[1]');
}, $content);
이런식으로 수정해주시면 될껍니다.
php 버전업에 대비해서 참고해주세요^^
이문제를 해결하기 위해서 preg_replace_callback 을 사용하라구 하네요..
예. amina/lib/view.lib.php
625 라인 근처
//Video
원본: $content = preg_replace("/{동영상\:([^}]*)}/ie", "amina_video_content('\\1','{$mobile}')", $content);
수정: $content = preg_replace_callback("/{동영상\:([^}]*)}/i",
function ($matches) {
amina_video_content('$matches[1]','{$mobile}');
}, $content);
==================================================================================
//SoundCloud
원본 : $content = preg_replace("/\[soundcloud(.*)\/\]/ies", "amina_soundcloud('\\1')", $content);
수정: $content = preg_replace_callback("/\[soundcloud(.*)\/\]/is",
function ($matches) {
amina_soundcloud('$matches[1]');
}, $content);
이런식으로 수정해주시면 될껍니다.
php 버전업에 대비해서 참고해주세요^^
댓글 2개
게시글 목록
| 번호 | 제목 |
|---|---|
| 32970 | |
| 32959 | |
| 32937 | |
| 32917 | |
| 32909 | |
| 32899 | |
| 32885 | |
| 32884 | |
| 32862 | |
| 32861 | |
| 32860 | |
| 32840 | |
| 32814 | |
| 32804 | |
| 32795 | |
| 32784 | |
| 32783 | |
| 32750 | |
| 32740 | |
| 32732 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기