我收到以下错误
遇到PHP错误严重性:解析错误
消息:语法错误,意外T_DOUBLE_ARROW
文件名:controllers / Welcome.php
行号:15
回溯:
我的代码是
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Welcome extends CI_Controller {
public function __construct(){
parent::__construct();
$this->load->model('HotelModel');
}
public function index(){
$hotData = $this->HotelModel->getAllHotelList();
$cityData = $this->HotelModel->getAllHotelCity();
$this->load->view('public/index',('hotData' => $hotData,'cityData' => $cityData));
}
}
?>
我无法找到我的错误。