当我在控制器的操作中使用 imagecreatefrompng() 时,我有一些代码会中断。我不认为它应该有所作为,但 imagecreatefrompng() 是在通过 AJAX 调用的动作内部调用的。
$imgName='img/favicons/'.$saveFileName.'_large.png';
$img=imagecreatefrompng($imgName);
我很确定这条路是对的。在同一操作中,我将文件保存到该文件夹中,但是返回以下错误:
警告:get_class() 期望参数 1 是对象,资源在C:\xampp\htdocs\cakephp\lib\Cake\Utility\Debugger.php第578行
警告:get_object_vars() 期望参数 1 是对象,资源在C:\xampp\htdocs\cakephp\lib\Cake\Utility\Debugger.php中的第584行
错误指向的 debugger.php 文件中的特定函数处理对象到字符串的转换,导致错误的行是:
$className = get_class($var);
$objectVars = get_object_vars($var);
有人知道出了什么问题吗?谢谢
编辑 :
这是函数的代码
public function saveSiteFavicon() {
$this->layout = 'ajax';
$url = $this->request->data['websiteurl'];
$saveFileName = parse_url($url);
$saveFileName = $saveFileName['host'];
$saveFileName = str_replace('.', '', $saveFileName);
$saveFileName = str_replace('www', '', $saveFileName);
$this->Favicon->recursive = 0;
$faviconexists = $this->Favicon->findByImage($saveFileName.'.png');
if(!empty($faviconexists)) {
echo $saveFileName.'.png:'.$faviconexists['Favicon']['id'];
} else {
$fp = fopen ('img/favicons/'.$saveFileName.'.png', 'w+');
$ch = curl_init('http://g.etfv.co/'.$url);
curl_setopt($ch, CURLOPT_TIMEOUT, 6);
/* Save the returned data to a file */
curl_setopt($ch, CURLOPT_FILE, $fp);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_exec($ch);
curl_close($ch);
fclose($fp);
//if the favicon is oversized resize it
$faviconFileName = 'img/favicons/'.$saveFileName.'.png';
$metaData=getimagesize($faviconFileName);
if($metaData[1] > 16) {
rename($faviconFileName, 'img/favicons/'.$saveFileName.'_large.png');
$imgName='img/favicons/'.$saveFileName.'_large.png';
$thumbName='img/favicons/'.$saveFileName.'.png';
$img=imagecreatefrompng($imgName);
$imgThumb=imagecreatetruecolor(16,16);
imagecopyresampled($imgThumb,$img,0,0,0,0,16,16,$metaData[0],$metaData[1]);
imagepng($imgThumb, $thumbName);
imagedestroy($imgThumb);
}
$this->Favicon->create();
$this->Favicon->save(array('image'=>$saveFileName.'.png'));
$faviconid = $this->Favicon->getLastInsertId();
echo $saveFileName.'.png:'.$faviconid;
}
}
在视图中,我只是通过 ajax 调用此函数并提醒结果,这是我看到错误消息的地方。
$.post("../favicons/saveSiteFavicon", {websiteurl: value})
.done(function(data) {
alert(data);
});