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

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定

求大神們解答,小白很無(wú)奈

<?php
class Image{
? ?private $info;
? ?private $image;
//打開(kāi)圖片
? ?public function _construct($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']}";
? ? ? ?$image=$fun($src);
? ?}
? ?//壓縮圖片
? ?public function thumb($width,$height){
? ? ? ?$thumb_img=imagecreatetruecolor($width,$height);
? ? ? ?//參數(shù)未定義
? ? ? ?imagecopyresampled($thumb_img,$this->image,0,0,0,0,$width,$height,$this->info['width'],$this->info['height']);
? ? ? ?//出錯(cuò)
? ? ? ?imagedestroy($this->image);
? ? ? ?$this->image=$thumb_img;
? ?}
? ?//在瀏覽器顯示圖片
? ?public function show(){
? ? ? ?header("Content-type:".$this->info["mime"]);
? ? ? ?$func="image{$this->info['type']}";
? ? ? ?//出錯(cuò)
? ? ? ?$func($this->image);
? ?}
? ?//保存圖片至硬盤(pán)
? ?public function save($newName){
? ? ? ?$funcs="image{$this->info['type']}";
? ? ? ?$funcs($this->image,$newName.'.'.$this->info['type']);
? ?}
? ?//銷(xiāo)毀圖片
? ?public function _destruct(){
? ? ? ?imagedestroy($this->image);
? ?}





}




?>



<?php
require "thumbclass.php";
$src="bg.jpg";
$image=new Image($src);
$image->thumb(300,500);
$image->show();
?>http://img1.sycdn.imooc.com//5a26852100015dcf10810562.jpg

正在回答

1 回答

你require那里的類(lèi)名字都不對(duì)吧

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

驀默 提問(wèn)者

我require里引入的是我對(duì)應(yīng)的php文件,我檢查過(guò)了,是thumbclass.php這個(gè)文件,路徑也沒(méi)錯(cuò)啊
2017-12-06 回復(fù) 有任何疑惑可以回復(fù)我~
#2

aimoty 回復(fù) 驀默 提問(wèn)者

你改成thumb.class.php
2017-12-06 回復(fù) 有任何疑惑可以回復(fù)我~
#3

aimoty 回復(fù) 驀默 提問(wèn)者

好吧,我來(lái)說(shuō)你問(wèn)題在哪,首先構(gòu)造函數(shù)和析構(gòu)函數(shù)前面都是兩個(gè)下劃線,15行要調(diào)用$image必須要$this->image
2017-12-06 回復(fù) 有任何疑惑可以回復(fù)我~
#4

驀默 提問(wèn)者 回復(fù) aimoty

謝謝大神,多虧了你才解決掉
2017-12-27 回復(fù) 有任何疑惑可以回復(fù)我~
#5

驀默 提問(wèn)者 回復(fù) aimoty

15行不用改
2017-12-27 回復(fù) 有任何疑惑可以回復(fù)我~
查看2條回復(fù)

舉報(bào)

0/150
提交
取消

求大神們解答,小白很無(wú)奈

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

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

幫助反饋 APP下載

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

公眾號(hào)

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