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);