douzhi2012 2015-02-20 09:18
浏览 19
已采纳

如何通过SOAP从VIES数据库收集公司数据

I am using the VIES database to gather company data, based on European VAT number for my PHP application.

The things that I need are:

  • city
  • street name
  • house number
  • postcode
  • comapny name

as separate data but the VIES database is giving me all of it as a one string.

Working example:

<?php
try {
    $opts = array(
        'http' => array(
            'user_agent' => 'PHPSoapClient'
        )
    );
    $context = stream_context_create($opts);

    $client = new SoapClient(
        'http://ec.europa.eu/taxation_customs/vies/checkVatService.wsdl',
        array('stream_context' => $context,
              'cache_wsdl'     => WSDL_CACHE_NONE)
    );

    $result = $client->checkVat(
        array(
            'countryCode' => 'PL',
            'vatNumber'   => '5242106963'
        )
    );
    print_r($result);
} catch (Exception $e) {
    echo $e->getMessage();
}
?>

I am receiving:

stdClass Object (
    [countryCode] => PL
    [vatNumber] => 5242106963
    [requestDate] => 2015-02-20+01:00
    [valid] => 1
    [name] => COCA-COLA HBC POLSKA SPÓŁKA Z OGRANICZONĄ ODPOWIEDZIALNOŚCIĄ
    [address] => ANNOPOL 20 03-236 WARSZAWA
)

But I need the address like this:

$street='ANNOPOL';
$number='20';
$city='WARSZAWA';
$postcode='03-236';

Also please keep in mind that for other companies, the street name or city can have more then one word, like "New York", so an easy solution to divide the data based on space between words doesn't work for me.

  • 写回答

2条回答 默认 最新

  • dongshou2017 2015-02-20 11:18
    关注

    As you have stated that postal code will be in 99-999 format and assuming the street number (+ any flat identification) will always start with a number, you can use a preg_match to parse the address string:

    $result = new stdClass();
    $result->address = 'Wita Stwosza 15 M5 31-042 Kraków';
    
    preg_match(
        '#'
        . '(.*?)'             // Match as many chars as possible (street)
        . '\s+(\d+(?:.*?))'   // Space, then number and possibly flat (number)
        . '\s+(\d\d\-\d\d\d)' // Space, then digits/dash/digits (postcode)
        . '\s(.*)'            // Space, then everything after that (city)
        . '#',
        $result->address,
        $matches
    );
    list ($street, $number, $postcode, $city) = array_slice($matches, 1);
    
    echo "Street:   $street", PHP_EOL;
    echo "Number:   $number", PHP_EOL;
    echo "Postcode: $postcode", PHP_EOL;
    echo "City:     $city", PHP_EOL;
    

    Output:

    Street:   Wita Stwosza
    Number:   15 M5
    Postcode: 31-042
    City:     Kraków
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥500 高有偿提问!求优化设计微信小程序
  • ¥15 matlab在安装时报错 无法找到入口 无法定位程序输入点
  • ¥15 收益高的广告联盟有哪些
  • ¥15 Android Studio webview 的使用问题, 播放器横屏全屏
  • ¥15 删掉jdk后重新下载,Java web所需要的eclipse无法使用
  • ¥15 uniapp正式环境中通过webapi将本地数据推送到设备出现的跨域问题
  • ¥15 xui建立节点,显示错误
  • ¥15 关于#单片机#的问题:开始、复位、十进制的功能可以实现,但是切换八进制的功能无法实现(按下按键也没有效果),把初始状态调成八进制,也是八进制可以实现但是切换到十进制不行(相关搜索:汇编语言|计数器)
  • ¥15 VINS-Mono或Fusion中feature_manager中estimated_depth是特征的深度还是逆深度?
  • ¥15 谷歌浏览器如何备份抖音网页数据