PHP code example of kingze / sf-express-api-php

1. Go to this page and download the library: Download kingze/sf-express-api-php library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

kingze / sf-express-api-php example snippets


composer 

 

ngze\SFExpressAPI\BSP\OrderService;

// 此处的配置请改成真实数据,其默认运行在开发模式下。
$config = [
   'server' => "http://bspoisp.sit.sf-express.com:11080/",
   'server_ssl' => "https://bspoisp.sit.sf-express.com:11443/",
   'ssl' => false,
   'uri' => 'bsp-oisp/sfexpressService',
   'checkword' => 'j8DzkIFgmlomPt0aLuwU',
   'accesscode' => 'BSPdevelop'
];


//$service  = new OrderService($config);
// 可以不传$config,将运行在开发模式下。
$service  = new OrderService();

// 你自己ERP系统里的订单ID。
$orderid = 88888888;

//常用参数
$data = array(
    'is_gen_bill_no' => '1',
    'custid' => '5770100197',
    #收方信息
    'd_company' => '收件公司',
    'd_contact' => '收件人',
    'd_tel'     => '收件人电话',
    'd_province'=> '浙江',
    'd_city'    => '温州',
    'd_county'  => '瓯海',
    'd_mobile'  => '收件人手机',
    'd_address' => '收件人地址',
    // 寄件方信息
    'j_mobile'=>'13000000000',
    'j_province'=>'广东省',
    'j_city'=>'深圳',
    'j_county'=>'福田区',
    'j_address'=>'罗湖火车站东区调度室',
    
    'express_type'=>'1', // 快件产品类别
    'pay_method'=>'1', // 付款方式
    'parcel_quantity'=>'1', // 包裹数
    'cargo_length'=>'', // 货物总长
    'cargo_width'=>'', // 货物总宽
    'cargo_height'=>'', // 货物总高
    'remark'=>'' // 备注
);

// 货物信息。可以有多个。 name为必填字段。
$Cargo = array(
    array( 'name'=>'LV背包', 'count'=>'3', 'unit'=>'只', 'weight'=>'', 'amount'=>'', 'currency'=>'', 'source_area'=>''),
    array('name'=>'LV手表', 'count'=>'3', 'unit'=>'块', 'weight'=>'', 'amount'=>'', 'currency'=>'', 'source_area'=>'')
);

// 下单
$ret = $service->Order($orderid, $data, $Cargo);

// 结果以数组形式返回。具体内容详见顺丰文档。
print_r($ret);