当前位置: 首页 > 知识库问答 >
问题:

分析错误:语法错误,意外的“已定义”(T_字符串)

冀弘厚
2023-03-14

我使用PHP 5.4版本。我得到的问题后,我上传我的Joomla cms文件夹从我的localhost到我的网络托管。

这是密码

<?php

defined('_JEXEC') or die;

JHtml::addIncludePath(JPATH_COMPONENT . '/helpers');

// Create shortcuts to some parameters.
$params  = $this->item->params;
$images  = json_decode($this->item->images);
$urls    = json_decode($this->item->urls);
$canEdit = $params->get('access-edit');
$user    = JFactory::getUser();
$info    = $params->get('info_block_position', 0);
JHtml::_('behavior.caption');
$useDefList = ($params->get('show_modify_date') || $params->get('show_publish_date') ||          $params->get('show_create_date')
|| $params->get('show_hits') || $params->get('show_category') || $params-   >get('show_parent_category') || $params->get('show_author'));

?>

我得到这个错误

分析错误:语法错误,在/home/u854215895/public\u html/templates/realestate/html/com\u content/article/default中出现意外的“已定义”(T_字符串)。php在线1

请帮忙...谢啦

共有1个答案

胡鸿羲
2023-03-14

从这里移走空间

$params-   >get('show_parent_category')
       --^--

事情是这样的。

$useDefList = ($params->get('show_modify_date') || $params->get('show_publish_date') ||          $params->get('show_create_date')
        || $params->get('show_hits') || $params->get('show_category') || $params->get('show_parent_category') || $params->get('show_author'));
 类似资料: