第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

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

報錯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找到答案了。。。打重復(fù)了s


public function __consstruct($src){

0 回復(fù) 有任何疑惑可以回復(fù)我~
#1

慕設(shè)計2812226

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

舉報

0/150
提交
取消

報錯Call to undefined function image()

我要回答 關(guān)注問題
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號