12345678910111213141516171819202122232425 |
- <?php
- if(!defined('IN_DISCUZ') || !defined('IN_ADMINCP')) {
- exit('Access Denied');
- }
- function is_utf8($word)
- {
- if (preg_match("/^([".chr(228)."-".chr(233)."]{1}[".chr(128)."-".chr(191)."]{1}[".chr(128)."-".chr(191)."]{1}){1}/",$word) == true || preg_match("/([".chr(228)."-".chr(233)."]{1}[".chr(128)."-".chr(191)."]{1}[".chr(128)."-".chr(191)."]{1}){1}$/",$word) == true || preg_match("/([".chr(228)."-".chr(233)."]{1}[".chr(128)."-".chr(191)."]{1}[".chr(128)."-".chr(191)."]{1}){2,}/",$word) == true)
- {
- return true;
- }
- else
- {
- return false;
- }
- } // function is_utf8
- $str=file_get_contents('http://addon.discuz.com/?@2874.developer');
- if($_G['charset']=='utf-8'){
- if(!is_utf8($str)){
- $str=iconv('gbk','utf-8',$str);
- }
- }
- echo str_replace('resource/template/','http://addon.discuz.com/resource/template/',str_replace('resource/developer/','http://addon.discuz.com/resource/developer/',str_replace('resource/plugin/','http://addon.discuz.com/resource/plugin/',$str)));
- ?>
|