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 微信会员卡等级和折扣规则
  • ¥15 微信公众平台自制会员卡可以通过收款码收款码收款进行自动积分吗
  • ¥15 随身WiFi网络灯亮但是没有网络,如何解决?
  • ¥15 gdf格式的脑电数据如何处理matlab
  • ¥20 重新写的代码替换了之后运行hbuliderx就这样了
  • ¥100 监控抖音用户作品更新可以微信公众号提醒
  • ¥15 UE5 如何可以不渲染HDRIBackdrop背景
  • ¥70 2048小游戏毕设项目
  • ¥20 mysql架构,按照姓名分表
  • ¥15 MATLAB实现区间[a,b]上的Gauss-Legendre积分