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개
게시글 목록
| 번호 | 제목 |
|---|---|
| 32729 | |
| 32718 | |
| 32717 | |
| 32714 | |
| 32713 | |
| 32709 | |
| 32706 | |
| 32705 | |
| 32702 | |
| 32693 | |
| 32685 | |
| 32680 | |
| 32659 | |
| 32643 | |
| 32636 | |
| 32629 | |
| 32619 | |
| 32618 | |
| 32617 | |
| 32611 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기