function imageproxy($url, $width='', $height='') {
return sprintf('https://your-domain.com/thumb/%dx%d/%s', $width, $height, urlencode($url));
}
---
Phuc Tran Hoang
Sử dụng imageproxy để tạo ảnh thumbnail thay thế timthumb.php
Phuc Tran Hoang