dozug64282 2018-04-18 13:59
浏览 64
已采纳

在面向对象的PHP中将数组关联并推送到变量中

I'm trying to push an array into a variable in php7. My code is:

public $services = array(
    '01' => 'Canada Post - Priority',
    '02' => 'Canada Post - Regular Parcel',
    '03' => 'Canada Post - Xpresspost',
    '04' => 'Purolator Express 9AM',
    '05' => 'Purolator Express 1030AM',
    '06' => 'Purolator Express',
    '07' => 'Purolator Ground',
);

Instead of the harded code part I wish to push my array that I've obtain in this way

public function easypost_database()
    {

        \EasyPost\EasyPost::setApiKey('mykey');
        $cas = \EasyPost\CarrierAccount::all();
        $carriers = array();
        foreach($cas as $key=>$value) {
            $carriers[] = $value['type'];

       }

       return $carriers;
   }

My array $carriers looks like that;

Array ( [0] => CanadaPostAccount 
[1] => PurolatorAccount )

The problem is that when I associate my variable with my array my code breaks.

public $services = $carriers;

and

public $services = $this->easypost_database();

won't work.

  • 写回答

1条回答 默认 最新

  • duanhai4046 2018-04-18 14:38
    关注

    What you are doing wont work, and it is basically poorly designed.

    If you need to use $carriers inside the class where you define easypost_database(), you should probably inject this dependency when creating this object.

    You'd have:

    class MyClass {
    
       protected $services;
    
       public function __construct(array $services) {
         $this->services = $services;
       }
    }
    

    Without knowing more about your system it's not possible to guess how are you resolving your dependencies or if you are using any type of container or service locator. But putting it simply, to instantiate this object you'd need to do something like:

    \EasyPost\EasyPost::setApiKey('mykey');
    $cas = \EasyPost\CarrierAccount::all();
    $carriers = [];
    foreach($cas as $key=>$value) {
        $carriers[] = $value['type'];
    }
    
    $foo = new MyClass($carriers);
    

    And now you'd be able to access $this->services from within your class.

    But properties definition need to be able to be resolved at compile time, so the kind of expression you want to use would never work.

    From the manual:

    This declaration may include an initialization, but this initialization must be a constant value--that is, it must be able to be evaluated at compile time and must not depend on run-time information in order to be evaluated.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵