在 Modx Revolution 中,我试图让 phpthumb 从我正在编写的片段中工作 - 我想我几乎拥有所有的部分,但我有一种预感,也许我没有正确格式化图像文件路径。
这是我的代码:
$input = "http://www.domain.com/assets/files/".$cover;
$width = 610;
$height = 504;
$options = "w=$width&h=$height&zc=1";
$thumb = $modx->runSnippet("phpthumbof",array('input' => $input, 'options' => $options));
如果我注释掉最后一行,页面加载没有错误,但未注释我得到一个错误,没有别的:
无法显示图像“<a href="http://www.domain.com/" rel="nofollow">http://www.domain.com/”,因为它包含错误。
但是如果我回显 $input 的值,它确实会给出图像 URL,所以我假设 phpthumb 不想要一个 URI 字符串......?
我究竟做错了什么?