We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Здравствуйте!
yii\base\ErrorException: Invalid argument supplied for foreach() in /var/www/u46770/data/www/vendor/getjump/vk/src/getjump/Vk/Response/Response.php:41 Stack trace: #0 /var/www/u46770/data/www/vendor/getjump/vk/src/getjump/Vk/Response/Response.php(41): yii\base\ErrorHandler->handleError(2, 'Invalid argumen...', '/var/www/u46770...', 41, Array) #1 /var/www/u46770/data/www/vendor/getjump/vk/src/getjump/Vk/Response/Api.php(25): getjump\Vk\Response\Response->__construct(1, false) ...
VK Возвращает ответ вида:
{ "response": 1 }
Полагаю, __construct() пытается обработать его, как массив.
public function __construct($data, $callback = false) { foreach ($data as $key => $value) { if (property_exists($this, $key)) { continue; } $this->{$key} = $value; $this->extendedFields[] = $key; } ...
Что порекомендуете?
The text was updated successfully, but these errors were encountered:
Та же ситуация, почему то от вк иногда не массив приходит
Sorry, something went wrong.
Всё по документации, вк не всегда возвращает массив, что автор видимо не учёл.
Я решил проблему по-своему:
if (is_array($data)) { foreach ($data as $key => $value) { if (property_exists($this, $key)) { continue; } $this->{$key} = $value; $this->extendedFields[] = $key; } } else { $this->val = $data; }
No branches or pull requests
Здравствуйте!
VK Возвращает ответ вида:
Полагаю, __construct() пытается обработать его, как массив.
Что порекомендуете?
The text was updated successfully, but these errors were encountered: