我看到一些免费类库做了一些非常有趣的事情,比如
wideimage,phpexcel,它调用如下
$ class = new WideImage;
// WideImage
$类 - >负载() - >调整大小() - > addnoise() - >的SaveToFile();
我想学习它,但我不知道,我认为它使用函数__call(){}但我尝试了它不起作用,有人教我怎么样?我尝试搜索stackoverflow和谷歌,但我不知道该搜索LOL应该关键字。
<?php
namespace system\classes {
if(!defined('IN_APP')){
exit('ACCESS DENIED.');
}
class images
{
protected $_root;
protected $_attachment;
protected $_image_path;
protected $image;
public $image_container;
public function __construct(){
global $_G;
$this->_root = getglobal('attachment/path/root');
$this->_attachment = getglobal('attachment/path/sub');
$this->_image_path = $this->_root . DS . $this->_attachment . DS . getglobal('attachment/path/images') . DS;
if(!$this->image || $this->image == '' || null($this->image)){
$this->image = new \system\classes\wideimage\WideImage();
}
}
public function load($var){
$matrix = array(array(2,0,0),array(0, -1, 0), array(0, 0, -1));
// $this->image = $this->image->loadFromUpload($var)->crop(50,50)->resize(100,100)->rotate(200,200)->addNoise(300, 'mono')->applyConvolution($matrix, 1, 220);
$this->image = $this->image->loadFromUpload($var);
// exit(var_dump($this->_image_path));
}
public function resize($width, $height){
$this->image = $this->image->resize($width, $height);
}
public function save(){
// exit(var_dump($this->image_container));
$this->image = $this->image->saveToFile('name.gif');
}
public function __call($name,$arg){
exit(var_dump($name));
}
}
}
?>
这是我的test.php
if(isset($_FILES['img'])){
$images = new system\classes\images();
$images->load('img')->save();
// $images->save();
}
我试过了$ images-&gt; load('img') - &gt; save();
和php给我一个错误
致命错误:在
中的非对象上调用成员函数save()
答案 0 :(得分:1)
->
运算符调用对象上的方法。因此,您必须从函数中返回一个对象,因此您可以调用方法。最简单的方法是return $this
,因此您再次使用与初始方法调用相同的对象实例。
此关键字属于method chaining。