我遇到了php 7的问题我在下面遇到以下错误。
遇到PHP错误
严重性:注意
消息:遇到未正确形成的数值
文件名:controllers / Servers.php
行号:2155
回溯:
文件:/httpdocs/application/controllers/Servers.php行:2155 功能:imagettftext
文件:/httpdocs/index.php行:315功能:require_once
这是第2155行
imagettftext($im,7,0,394,15,$color_title,'assets/fonts/arialbd.ttf',"# OF PLAYERS (past 24 hours)");
这是第315行
require_once BASEPATH.'core/CodeIgniter.php';
// Main function for banners - create banner
public function createBanner(){
// Get variables
$serverid = $this->uri->segment(2,0); // Server ID
$color_title = $this->uri->segment(3,'FFC200'); // Color Title
$color_info = $this->uri->segment(4,'FFFFFF'); // Color Info
$bg = $this->uri->segment(5,'general_background'); // Background
$gradient_up = $this->uri->segment(6,'808080'); // Gradient_up
$gradient_down = $this->uri->segment(7,'000000'); // Gradient down
$border_color = $this->uri->segment(8,'000000'); // Border Color
$border = $this->uri->segment(9,'false'); // Border ?
// Get Website Details
$run = $this->db->get('settings');
$site = $run->row();