PHP注意:未定义的索引:idOrAttributeName_x
我在yii框架中使用jcrop扩展。那时我得到了这个通知。我正在开发一个使用yii框架的网站,其中我有一个任务来裁剪图像。对于这个任务,我在yii框架中使用Jcrop扩展。 当我将下面的代码添加到我的控制器动作index()方法时,我得到了这个错误。实际上我不知道在函数中传递哪个变量。
Yii::import('ext.jcrop.EJCropper');
$jcropper = new EJCropper();
$jcropper->thumbPath = '/my/images/thumbs';
// some settings ...
$jcropper->jpeg_quality = 95;
$jcropper->png_compression = 8;
// get the image cropping coordinates (or implement your own method)
***$coords = $jcropper->getCoordsFromPost(**'idOrAttributeName'**);***
// returns the path of the cropped image, source must be an absolute path.
$thumbnail = $jcropper->crop('/my/images/imageToCrop.jpg', $coords);
我是yii框架中的新手,请帮助...
答案 0 :(得分:0)
在这种情况下,'somestring'正是您在getCoordsFromPost
方法中的内容:在您的情况下"idOrAttributeName"
。
如果你看一下github上的源代码,就会很清楚(确实非常简单)。