亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定

報錯Call to undefined function image()

<?php

class Image {

private $image;

private $info;

public function __consstruct($src){

$info = getimagesize($src);

$this->info = array(

'width' => $info[0],

'height' => $info[1],

'type' => image_type_to_extension($info[2],false),

'mime' => $info['mime']

);

$fun = "imagecreatefrom{$this->info['type']}";

$this->$image = $fun($src);

}

public function thumb($width,$height){

$image_thumb = imagecreatetruecolor($width,$height);

imagecopyresampled($image_thumb,$this->image,0,0,0,0,$width,$height,$this->info['width'],$this->info['height']);

imagedestroy($this->image);

$this->image = $image_thumb;

}

public function show(){

header("Content-type:".$this->info['mime']);

$funs = "image{$this->info['type']}";

$funs($this->image);

}

public function save ($newname){

$funs = "image{$this->info['type']}";

$funs($this->image,image,$newname.'.'.$this->info['type']);

}

public function __destruct(){

imagedestroy($this->image);

}

}

?>

這是我的代碼 報28行錯誤

public function show(){

header("Content-type:".$this->info['mime']);

$funs = "image{$this->info['type']}";

$funs($this->image);

}

求分析 十分感謝

正在回答

1 回答

dreamweaver敲得

用sublime找到答案了。。。打重復了s


public function __consstruct($src){

0 回復 有任何疑惑可以回復我~
#1

慕設計2812226

這里為什么是這樣 this->$image ?
2018-08-12 回復 有任何疑惑可以回復我~

舉報

0/150
提交
取消

報錯Call to undefined function image()

我要回答 關注問題
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號