Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我收到此错误“致命错误:在第 140 行的非对象上调用成员函数 Save()”
在 PHP 编辑器中就像
$imageObj = split & new Image($row_image); $imageObj->Save();
请帮助解决这个问题。
这个“分裂”是$imageObj = split & new Image($row_image);什么?
$imageObj = split & new Image($row_image);
尝试将其更改为$imageObj = new Image($row_image);或解释它的用途
$imageObj = new Image($row_image);