Но на некоторых других серверах возникают ошибки, и я не могу понять, почему. Даже с одной и той же версией PHP.
Похоже, что те, которые работают, размещены на cPanel, а те, которые нет, по крайней мере, на данный момент.
Ошибка:
Код: Выделить всё
PHP Fatal error: Uncaught Error: Object of class GdImage could not be converted to string in /path/to/GDLuminanceSource.php:54
Код: Выделить всё
$this->$gdImage = $gdImage;
Код: Выделить всё
public function GDLuminanceSource($gdImage, $width, $height)
{
parent::__construct($width, $height);
$this->dataWidth = $width;
$this->dataHeight = $height;
$this->left = 0;
$this->top = 0;
$this->$gdImage = $gdImage;
Я пробовал изменить $this->$gdImage = $gdImage ; в $this->gdImage = $gdImage; но заставляет его не работать на рабочих серверах.
Подробнее здесь: https://stackoverflow.com/questions/782 ... tor-decode