编程语言
首页 > 编程语言> > PHP-我想通过代码在Prestashop上添加x客户,但要有额外的字段

PHP-我想通过代码在Prestashop上添加x客户,但要有额外的字段

作者:互联网

我正在尝试用代码添加客户,但PrestaShop给我一个错误.
我正在使用PHP和XML

$XMLRQString = '<?xml version="1.0" encoding="utf-8"?>'.
    '<x:Winmax4GetEntitiesRQ xmlns:x="urn:Winmax4GetEntitiesRQ">'.
                    '</x:Winmax4GetEntitiesRQ >';
                    $Params=array(
                    'CompanyCode'=>'',
                    'UserLogin'=>'',
                    'UserPassword'=>'',
                    'Winmax4GetEntitiesRQXML'=> $XMLRQString
                    );
                    $return = $client->GetEntities($Params);
                    $XMLRSString = new SimpleXMLElement($return->GetEntitiesResult);

foreach ($XMLRSString->Entities->Entity as $entity)
{   
    $default_lang= Configuration::get('PS_LANG_DEFAULT');

    $customer=new Customer();

    $customer->email= $entity->Email;

    $customer->lastname= $entity->EntityType;

    $customer->firstname= [$default_lang => $entity->Name];

    $customer->contribuinte= $entity->TaxPayerID;

    $customer->passwd= $entity->TaxPayerID;

    $customer->active = 1;

    $customer->add();
}

ERROR: (1/1) ContextErrorException Warning: preg_match() expects
parameter 2 to be string, array given

in Validate.php line 172

at ValidateCore::isCustomerName(array(object(SimpleXMLElement))) in
ObjectModel.php line 1149

at ObjectModelCore->validateField(‘firstname’,
array(object(SimpleXMLElement))) in ObjectModel.php line 981

at ObjectModelCore->validateFields() in ObjectModel.php line 284

at ObjectModelCore->getFields() in ObjectModel.php line 551

at ObjectModelCore->add(true, true) in Customer.php line 264

at CustomerCore->add() in create_clients.php line 66

解决方法:

从SimpleXML存储值时,如果仅通过其标记名引用元素本身-这将是SimpleXMLElement的实例.当您需要元素的实际内容时,最简单的方法是将其转换为字符串…

$customer->firstname= (string)$entity->Name;

标签:prestashop,customer,web-services,xml,php
来源: https://codeday.me/bug/20191210/2104529.html