YiiCurl icon indicating copy to clipboard operation
YiiCurl copied to clipboard

A curl library for Yii

Results 3 YiiCurl issues
Sort by recently updated
recently updated
newest added

The caching ability doesn't work. It seems that never has been used before. Issue 1) It doesn't pass the data to be cached Issue 2) If fix the above issue,...

has: public function onAfterRequest($event) { $this->raiseEvent('onBeforeRequest',$event); } must: public function onAfterRequest($event) { $this->raiseEvent('onAfterRequest',$event); }

Currently the definition of post & put methond in ACurl is different from the get, delete & head. I consider that this function should have consistent signatures. Get, delete, and...