$res = CIBlockSection::GetList(Array(), $arFilter, false, $arSelect);
[ErrorException] E_RECOVERABLE_ERROR
Object of class XMLReader could not be converted to string (0)
while ($reader->read()):
if ($reader->nodeType == XMLReader::ELEMENT && $reader->name == 'm:items'){
$data = new XMLReader();
$data->xml($reader->readOuterXML());
<?php
require_once($_SERVER["DOCUMENT_ROOT"]."/bitrix/modules/main/include/prolog_before.php");
CModule::IncludeModule("sale");
CModule::IncludeModule("catalog");
$productID = $_POST['productID']; // Получаем идентификатор товара из AJAX-запроса
// Добавляем товар в корзину
Add2BasketByProductID($productID);
// Возвращаем результат AJAX-запроса
echo json_encode(array('success' => true));
?>