在服务器(PHP 5.6.38)上,我在Joomla中有一个工作正常的网站,我尝试将其移至localhost(Uniserverz XIII-PHP 5.6.30)以测试某些更新,但设置时出现错误$error_reporting = 'development'
:
解析错误:语法错误,第64行的C:\ UniServerZ \ www \ site_name \ templates \ site_temp \ html \ modules.php中出现意外的}>
代码如下:
function modChrome_myCatMod($module, &$params, &$attribs)
{
$moduleTag = $params->get('module_tag', 'div');
$headerTag = htmlspecialchars($params->get('header_tag', 'h3'));
$bootstrapSize = (int) $params->get('bootstrap_size', 0);
$moduleClass = $bootstrapSize != 0 ? ' span' . $bootstrapSize : '';
// Temporarily store header class in variable
$headerClass = $params->get('header_class');
$headerClass = ($headerClass) ? ' class="' . htmlspecialchars($headerClass) . '"' : '';
if (!empty ($module->content)) : ?>
<<?php echo $moduleTag; ?> class="moduletable<?php echo htmlspecialchars($params->get('moduleclass_sfx')) . $moduleClass; ?>" id="Mod<?php echo $module->id;?>">
<?php if ((bool) $module->showtitle) : ?>
<?php $com_content_categories = $params->get('com_content_categories'); if(!empty($com_content_categories)):
$caturl = ContentHelperRoute::getCategoryRoute ( $com_content_categories[0] );
?>
<<?php echo $headerTag . $headerClass . '>' ?><a href="<?php echo $caturl;?>"><?php echo $module->title; ?></a></<?php echo $headerTag; ?>>
<?php else : ?>
<<?php echo $headerTag . $headerClass . '>' . $module->title; ?></<?php echo $headerTag; ?>>
<? endif;?>
<?php endif; ?><?php echo $module->content; ?>
</<?php echo $moduleTag; ?>>
<?php endif;
} //////////////////////////////////error line
答案 0 :(得分:3)
设置short_open_tag=On
在您的php.ini中
并重新启动Apache服务器