Error

模板标签写法错误:Undefined constant "thumb"
变量或者常量没有定义 "thumb"
D:\wwwroot\w.hbyxfy.com\caches\caches_template\yxfy\content\list_specialty.php(28) 搜索问题 →

D:\wwwroot\w.hbyxfy.com\caches\caches_template\yxfy\content\list_specialty.php at line 28

21                 </div>
22                 <div class="bd">
23                     <?php if(defined('IS_ADMIN') && IS_ADMIN && !defined('HTML')) {echo "<div class=\"admin_piao\" pc_action=\"content\" data=\"op=content&tag_md5=5ab4b05e97fd14c3ed386604ee1a9399&action=lists&catid=%24catid&num=25&order=id+DESC&page=%24page\"><a href=\"javascript:void(0)\" class=\"admin_piao_edit\">编辑</a>";}$content_tag pc_base::load_app_class("content_tag""content");if (method_exists($content_tag'lists')) {$cat getcache('category_content_'.$siteid,'commons');$setting dr_string2array($cat[$catid]['setting']);if ((int)$setting['ishtml']) {$pagesize = (int)$setting['pagesize'] ? (int)$setting['pagesize'] : 10;} else {$pagesize 25;}$page intval($page) ? intval($page) : 1;if($page<=0){$page=1;}$offset = ($page 1) * $pagesize;if (!(int)$setting['ishtml']) {$content_total $content_tag->count(array('catid'=>$catid,'order'=>'id DESC','limit'=>$offset.",".$pagesize,'action'=>'lists',));$pages pages($content_total$page$pagesize$urlrule);}$data $content_tag->lists(array('catid'=>$catid,'order'=>'id DESC','limit'=>$offset.",".$pagesize,'action'=>'lists',));}?>
24                     <ul class="e-list in-e-list">
25                         <?php $n=1;if(is_array($data)) foreach($data AS $r) { ?>
26                         <li>
27                             <a href="<?php echo $r['url'];?>" title="<?php echo $r['title'];?>">
28                                 <span class="pic"><img src="<?php echo thumb($r[thumb],110,140);?>" alt="<?php echo $r['title'];?>"></span>
29                                 <span class="info"><p><?php echo $r['title'];?></p><p class="i"><?php echo $r['zhicheng'];?></p><p class="i"><?php echo $r['catname'];?></p><p>查看详情</p></span>
30                             </a>
31                         </li>
32                         <?php $n++;}unset($n); ?>
33                     </ul>
34                     <div id="pages" class="text-c"><?php echo $pages;?></div>
35                     <?php if(defined('IS_ADMIN') && IS_ADMIN && !defined('HTML')) {echo '</div>';}?>
  1. include D:\wwwroot\w.hbyxfy.com\cms\modules\content\index.php   —   include()

  2. D:\wwwroot\w.hbyxfy.com\cms\libs\classes\application.class.php : 57   —  index->lists ()

    50         set_error_handler([$this->debug'errorHandler']);
    51         register_shutdown_function([$this->debug'shutdownHandler']);
    52         $controller $this->load_controller();
    53         if (method_exists($controllerROUTE_A)) {
    54             if (preg_match('/^[_]/i'ROUTE_A)) {
    55                 exit('You are visiting the action is to protect the private action');
    56             } else {
    57                 call_user_func(array($controller, ROUTE_A));
    58                 if (IS_ADMIN && CI_DEBUG && !IS_AJAX) {
    59                     if (!in_array(ROUTE_M, array('admin')) || !in_array(ROUTE_C, array('index')) && !in_array(ROUTE_A, array('public_main'))) {
    60                         $this->debug->message();
    61                     }
    62                 }
    63                 if (!IS_ADMIN && IS_DEV && !IS_AJAX) {
    64                     $this->debug->message();
    
  3. D:\wwwroot\w.hbyxfy.com\cms\libs\classes\application.class.php : 42   —  application->init ()

    35                 define('IS_MEMBER'TRUE);
    36             } else {
    37                 define('IS_MEMBER'FALSE);
    38             }
    39         } else {
    40             define('IS_MEMBER'FALSE);
    41         }
    42         $this->init();
    43     }
    44     
    45     /**
    46      * 调用件事
    47      */
    48     private function init() {
    49         set_exception_handler([$this->debug'exceptionHandler']);
    
  4. D:\wwwroot\w.hbyxfy.com\cms\base.php : 449   —  application->__construct ()

    442             include PC_PATH.$path.DIRECTORY_SEPARATOR.$classname.'.class.php';
    443             $name $classname;
    444             if ($my_path self::my_path(PC_PATH.$path.DIRECTORY_SEPARATOR.$classname.'.class.php')) {
    445                 include $my_path;
    446                 $name 'MY_'.$classname;
    447             }
    448             if ($initialize) {
    449                 $classes[$key] = new $name;
    450             } else {
    451                 $classes[$key] = true;
    452             }
    453             // 站群系统接入
    454             if (is_file(CMS_PATH.'api/fclient/sync.php')) {
    455                 $sync = require CMS_PATH.'api/fclient/sync.php';
    456                 if ($sync['status'] == 4) {
    
  5. D:\wwwroot\w.hbyxfy.com\cms\base.php : 400   —  pc_base::_load_class ( arguments )

    $classname
    application
    $path
    libs\classes
    $initialize
    1

    393     /**
    394      * 加载系统类方法
    395      * @param string $classname 类名
    396      * @param string $path 扩展地址
    397      * @param intger $initialize 是否初始化
    398      */
    399     public static function load_sys_class($classname$path ''$initialize 1) {
    400         return self::_load_class($classname, $path, $initialize);
    401     }
    402     
    403     /**
    404      * 加载应用类方法
    405      * @param string $classname 类名
    406      * @param string $m 模块
    407      * @param intger $initialize 是否初始化
    
  6. D:\wwwroot\w.hbyxfy.com\cms\base.php : 391   —  pc_base::load_sys_class ( arguments )

    $classname
    application

    384 
    385 class pc_base {
    386     
    387     /**
    388      * 初始化应用程序
    389      */
    390     public static function creat_app() {
    391         return self::load_sys_class('application');
    392     }
    393     /**
    394      * 加载系统类方法
    395      * @param string $classname 类名
    396      * @param string $path 扩展地址
    397      * @param intger $initialize 是否初始化
    398      */
    
  7. D:\wwwroot\w.hbyxfy.com\index.php : 39   —  pc_base::creat_app ()

    32 }
    33 // 判断安装
    34 if (file_exists('install') && is_file(CACHE_PATH.'install.lock')) {
    35     dr_dir_delete('install'TRUE);
    36 }
    37 // 结束,安装之后可以删除此段代码
    38 
    39 pc_base::creat_app();
    40 ?>
    

$_SERVER

Key Value
_FCGI_X_PIPE_ \\.\pipe\IISFCGI-500a02f1-2863-41d9-af8d-8774ffecf446
PHP_FCGI_MAX_REQUESTS 10000
ALLUSERSPROFILE C:\ProgramData
APPDATA C:\Windows\system32\config\systemprofile\AppData\Roaming
APP_POOL_CONFIG C:\inetpub\temp\apppools\w.hbyxfy.com\w.hbyxfy.com.config
APP_POOL_ID w.hbyxfy.com
BT_PANEL D:\BtSoft\panel
BT_PYTHON C:\Program Files\python
BT_SETUP D:\BtSoft
CommonProgramFiles C:\Program Files\Common Files
CommonProgramFiles(x86) C:\Program Files (x86)\Common Files
CommonProgramW6432 C:\Program Files\Common Files
COMPUTERNAME KFpvWoqyD3aW
ComSpec C:\Windows\system32\cmd.exe
LOCALAPPDATA C:\Windows\system32\config\systemprofile\AppData\Local
NUMBER_OF_PROCESSORS 2
OS Windows_NT
Path C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\WindowsPowerShell\v1.0\;;C:\Program Files\python;C:\Program Files\python\Scripts;;D:\BtSoft\panel\script;C:\Windows\system32\config\systemprofile\AppData\Local\Microsoft\WindowsApps
PATHEXT .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC
PROCESSOR_ARCHITECTURE AMD64
PROCESSOR_IDENTIFIER Intel64 Family 6 Model 79 Stepping 1, GenuineIntel
PROCESSOR_LEVEL 6
PROCESSOR_REVISION 4f01
ProgramData C:\ProgramData
ProgramFiles C:\Program Files
ProgramFiles(x86) C:\Program Files (x86)
ProgramW6432 C:\Program Files
PSModulePath C:\Program Files\WindowsPowerShell\Modules;C:\Windows\system32\WindowsPowerShell\v1.0\Modules
PUBLIC C:\Users\Public
SystemDrive C:
SystemRoot C:\Windows
TEMP C:\Windows\TEMP
TMP C:\Windows\TEMP
UNRAR_LIB_PATH C:\Program Files\python\Lib\site-packages\unrar\UnRAR.dll
USERDOMAIN WORKGROUP
USERNAME KFpvWoqyD3aW$
USERPROFILE C:\Windows\system32\config\systemprofile
windir C:\Windows
ORIG_PATH_INFO /index.php
URL /index.php
SERVER_SOFTWARE Microsoft-IIS/10.0
SERVER_PROTOCOL HTTP/1.1
SERVER_PORT_SECURE 0
SERVER_PORT 80
SERVER_NAME www.hbyxfy.com
SCRIPT_NAME /index.php
SCRIPT_FILENAME d:\wwwroot\w.hbyxfy.com\index.php
REQUEST_URI /index.php?m=content&c=index&a=lists&catid=14
REQUEST_METHOD GET
REMOTE_USER
REMOTE_PORT 52972
REMOTE_HOST 52.91.177.91
REMOTE_ADDR 52.91.177.91
QUERY_STRING m=content&c=index&a=lists&catid=14
PATH_TRANSLATED d:\wwwroot\w.hbyxfy.com\index.php
LOGON_USER
LOCAL_ADDR 122.114.10.199
INSTANCE_META_PATH /LM/W3SVC/11
INSTANCE_NAME W.HBYXFY.COM
INSTANCE_ID 11
HTTPS_SERVER_SUBJECT
HTTPS_SERVER_ISSUER
HTTPS_SECRETKEYSIZE
HTTPS_KEYSIZE
HTTPS off
GATEWAY_INTERFACE CGI/1.1
DOCUMENT_ROOT d:\wwwroot\w.hbyxfy.com
CONTENT_TYPE
CONTENT_LENGTH 0
CERT_SUBJECT
CERT_SERIALNUMBER
CERT_ISSUER
CERT_FLAGS
CERT_COOKIE
AUTH_USER
AUTH_PASSWORD
AUTH_TYPE
APPL_PHYSICAL_PATH d:\wwwroot\w.hbyxfy.com\
APPL_MD_PATH /LM/W3SVC/11/ROOT
IIS_UrlRewriteModule 7.1.0871.0
WEBSOCKET_VERSION 13
HTTP_USER_AGENT claudebot
HTTP_HOST www.hbyxfy.com
HTTP_ACCEPT */*
FCGI_ROLE RESPONDER
PHP_SELF /index.php
REQUEST_TIME_FLOAT
1711716233.2062																	
REQUEST_TIME
1711716233																	

Constants

Key Value
IS_DEV 1
IS_ADMIN
IS_MOBILE
SELF index.php
CMS_PATH D:\wwwroot\w.hbyxfy.com\
IN_CMS 1
IN_PHPCMS 1
IS_API
IS_COLLAPI
PC_PATH D:\wwwroot\w.hbyxfy.com\cms\
PHPCMS_PATH D:\wwwroot\w.hbyxfy.com\
CACHE_PATH D:\wwwroot\w.hbyxfy.com\caches\
CONFIGPATH D:\wwwroot\w.hbyxfy.com\caches\configs\
HTTP_REFERER
SYS_START_TIME 1711716233.2141
SYS_START_MEM 375664
MIN_PHP_VERSION 7.1.0
MAX_PHP_VERSION 8.3.0
ROOT_URL http://www.hbyxfy.com/
SYS_TIMEZONE 8
CHARSET utf-8
SYS_TPL_ROOT templates/
TPLPATH D:\wwwroot\w.hbyxfy.com\cms\templates/
SYS_TIME_FORMAT
SYS_ADMIN_PAGESIZE 10
TEMPPATH D:\wwwroot\w.hbyxfy.com\cms\temp/
IS_AJAX
IS_POST
IS_AJAX_POST
SYS_TIME 1711716233
SYS_BDMAP_API
WEB_PATH /
JS_PATH http://www.hbyxfy.com/statics/js/
CSS_PATH http://www.hbyxfy.com/statics/css/
IMG_PATH http://www.hbyxfy.com/statics/images/
MOBILE_JS_PATH http://www.hbyxfy.com/mobile/statics/js/
MOBILE_CSS_PATH http://www.hbyxfy.com/mobile/statics/css/
MOBILE_IMG_PATH http://www.hbyxfy.com/mobile/statics/images/
APP_PATH http://www.hbyxfy.com/
MOBILE_PATH http://www.hbyxfy.com/mobile/
SYS_DEBUG 1
SYS_EDITOR 0
COOKIE_PRE CMSADEBABBEF2303_
COOKIE_DOMAIN
COOKIE_PATH
SYS_ADMIN_PATH login
NeedCheckComeUrl 1
SYS_KEY CMSdc45907ce050c1face9de6c3f11ecaed
SYS_LANGUAGE zh-cn
SYS_CSRF 2
SYS_CSRF_TIME 0
SYS_TPL_NAME default
IS_EDIT_TPL 1
SYS_ADMIN_LOG 1
SYS_ERRORLOG 1
SYS_GZIP 1
SYS_EXECUTION_SQL 0
ADMIN_FOUNDERS
Array
(
    [0] => 1
)
																	
SYS_HTML_ROOT /html
SYS_MOBILE_ROOT /mobile
SYS_KEYWORDAPI 0
SYS_BAIDU_AID
SYS_BAIDU_SKEY
SYS_BAIDU_ARCRETKEY
SYS_BAIDU_QCNUM 10
SYS_XUNFEI_AID
SYS_XUNFEI_SKEY
SITE_ID 1
SITE_URL http://www.hbyxfy.com
SITE_MURL
SYS_ATTACHMENT_STAT 1
SYS_ATTACHMENT_FILE 0
SYS_ATTACHMENT_DEL 1
SYS_ATTACHMENT_SAVE_ID 0
SYS_ATTACHMENT_CF 0
SYS_ATTACHMENT_PAGESIZE 18
SYS_ATTACHMENT_SAFE 0
SYS_ATTACHMENT_PATH
SYS_ATTACHMENT_URL
SYS_ATTACHMENT_SAVE_TYPE 0
SYS_ATTACHMENT_SAVE_DIR
CI_DEBUG 1
ENVIRONMENT development
SYS_CACHE 0
SYS_CACHE_TYPE 0
SYS_CACHE_SHOW 0
SYS_CACHE_PAGE 0
SYS_CACHE_LIST 0
SYS_CACHE_SEARCH 0
SYS_CACHE_SMS 0
SYS_UPLOAD_PATH D:\wwwroot\w.hbyxfy.com\uploadfile/
SYS_UPLOAD_URL http://www.hbyxfy.com/uploadfile/
SYS_AVATAR_PATH D:\wwwroot\w.hbyxfy.com\uploadfile/avatar/
SYS_AVATAR_URL http://www.hbyxfy.com/uploadfile/avatar/
SYS_THUMB_PATH D:\wwwroot\w.hbyxfy.com\uploadfile/thumb/
SYS_THUMB_URL http://www.hbyxfy.com/uploadfile/thumb/
SITE_PROTOCOL http://
FC_NOW_URL http://www.hbyxfy.com/index.php?m=content&c=index&a=lists&catid=14
FC_NOW_HOST http://www.hbyxfy.com/
DOMAIN_NAME www.hbyxfy.com
WEB_DIR /
CMSURI
ROUTE_M content
ROUTE_C index
ROUTE_A lists
IS_MEMBER
CACHE_MODEL_PATH D:\wwwroot\w.hbyxfy.com\caches\caches_model\caches_data\
SITEID 1
STYLE yxfy
URLRULE index.php?m=content&c=index&a=lists&catid={$catid}~index.php?m=content&c=index&a=lists&catid={$catid}&page={$page}
ISMOBILE 0
IS_HTML 0

$_GET

Key Value
m content
c index
a lists
catid 14
  1. D:\wwwroot\w.hbyxfy.com\index.php
  2. D:\wwwroot\w.hbyxfy.com\cms\base.php
  3. D:\wwwroot\w.hbyxfy.com\cms\libs\functions\global.func.php
  4. D:\wwwroot\w.hbyxfy.com\cms\libs\functions\extention.func.php
  5. D:\wwwroot\w.hbyxfy.com\cms\libs\functions\autoload\customfield.func.php
  6. D:\wwwroot\w.hbyxfy.com\cms\libs\classes\cache_factory.class.php
  7. D:\wwwroot\w.hbyxfy.com\cms\libs\classes\cache_file.class.php
  8. D:\wwwroot\w.hbyxfy.com\caches\caches_commons\caches_data\sitelist.cache.php
  9. D:\wwwroot\w.hbyxfy.com\caches\configs\system.php
  10. D:\wwwroot\w.hbyxfy.com\cms\libs\classes\input.class.php
  11. D:\wwwroot\w.hbyxfy.com\cms\libs\classes\cache.class.php
  12. D:\wwwroot\w.hbyxfy.com\cms\libs\classes\cachefile.class.php
  13. D:\wwwroot\w.hbyxfy.com\caches\configs\filters.php
  14. D:\wwwroot\w.hbyxfy.com\cms\libs\classes\security.class.php
  15. D:\wwwroot\w.hbyxfy.com\cms\libs\classes\application.class.php
  16. D:\wwwroot\w.hbyxfy.com\cms\libs\classes\debug.class.php
  17. D:\wwwroot\w.hbyxfy.com\cms\libs\classes\param.class.php
  18. D:\wwwroot\w.hbyxfy.com\caches\configs\route.php
  19. D:\wwwroot\w.hbyxfy.com\cms\modules\content\index.php
  20. D:\wwwroot\w.hbyxfy.com\cms\modules\content\functions\util.func.php
  21. D:\wwwroot\w.hbyxfy.com\cms\modules\content\functions\global.func.php
  22. D:\wwwroot\w.hbyxfy.com\cms\model\content_model.class.php
  23. D:\wwwroot\w.hbyxfy.com\cms\libs\classes\model.class.php
  24. D:\wwwroot\w.hbyxfy.com\cms\libs\classes\db_factory.class.php
  25. D:\wwwroot\w.hbyxfy.com\cms\libs\classes\upload.class.php
  26. D:\wwwroot\w.hbyxfy.com\caches\configs\database.php
  27. D:\wwwroot\w.hbyxfy.com\cms\libs\classes\db_mysqli.class.php
  28. D:\wwwroot\w.hbyxfy.com\cms\modules\content\classes\url.class.php
  29. D:\wwwroot\w.hbyxfy.com\cms\model\category_model.class.php
  30. D:\wwwroot\w.hbyxfy.com\caches\caches_commons\caches_data\urlrules.cache.php
  31. D:\wwwroot\w.hbyxfy.com\cms\model\category_priv_model.class.php
  32. D:\wwwroot\w.hbyxfy.com\caches\caches_commons\caches_data\category_content.cache.php
  33. D:\wwwroot\w.hbyxfy.com\caches\caches_commons\caches_data\category_content_1.cache.php
  34. D:\wwwroot\w.hbyxfy.com\cms\libs\classes\template_cache.class.php
  35. D:\wwwroot\w.hbyxfy.com\caches\caches_template\yxfy\content\list_specialty.php
  36. D:\wwwroot\w.hbyxfy.com\caches\caches_template\yxfy\content\header.php
  37. D:\wwwroot\w.hbyxfy.com\cms\modules\content\classes\content_tag.class.php
  38. D:\wwwroot\w.hbyxfy.com\cms\model\position_data_model.class.php
  39. D:\wwwroot\w.hbyxfy.com\caches\caches_commons\caches_data\model.cache.php
  40. D:\wwwroot\w.hbyxfy.com\cms\temp\errors\html\error_exception.php
Memory Usage 6MB
Peak Memory Usage: 6MB
Memory Limit: 128M