ここで少し助けが必要です。それは大歓迎です。彼女がクライアントから入手したプロジェクトで友人を手伝っていますが、このエラーが発生し続けています。ローカルホストを使用していました。
エラー:
解析エラー: 構文エラー、予期しない $end、C:\xampp\htdocs\OurCammbackup\libraries\joomla\error\error.php の 53 行目に T_FUNCTION が必要です
コード:
<?php
/**
* @package Joomla.Platform
* @subpackage Error
*
* @copyright Copyright (C) 2005 - 2012 Open Source Matters, Inc. Allrights reserved.
* @license GNU General Public License version 2 or later; see LICENSE
*/
defined('JPATH_PLATFORM') or die;
// Error Definition: Illegal Options
define('JERROR_ILLEGAL_OPTIONS', 1);
// Error Definition: Callback does not exist
define('JERROR_CALLBACK_NOT_CALLABLE', 2);
// Error Definition: Illegal Handler
define('JERROR_ILLEGAL_MODE', 3);
/**
* Error Handling Class
*
* This class is inspired in design and concept by patErrorManager <http://www.php- tools.net>
*
* patErrorManager contributors include:
* - gERD Schaufelberger <gerd@php-tools.net>
* - Sebastian Mordziol <argh@php-tools.net>
* - Stephan Schmidt <scst@php-tools.net>
*
* @package Joomla.Platform
* @subpackage Error
* @since 11.1
* @deprecated 12.1 Use PHP Exception
*/
abstract class JError
{
/**
* Legacy error handling marker
*
* @var boolean True to enable legacy error handling using JError, false to use exception handling. This flag
* is present to allow an easy transition into exception handling for code written against the
* existing JError API in Joomla.
* @since 11.1
*/
public static $legacy = false;
/**
* Array of message levels
*
* @var array
* @since 11.1
*/
何か不足していますか?