PHP create key => value pairs within a foreach

后端 未结 5 986
傲寒
傲寒 2021-02-04 04:58

I want to create a key-value pairs in an array within a foreach. Here is what I have so far:

function createOfferUrlArray($Offer) {
    $offerArray = array();

         


        
5条回答
  •  故里飘歌
    2021-02-04 05:18

    Create key value pairs on the phpsh commandline like this:

    php> $keyvalues = array();
    php> $keyvalues['foo'] = "bar";
    php> $keyvalues['pyramid'] = "power";
    php> print_r($keyvalues);
    Array
    (
        [foo] => bar
        [pyramid] => power
    )
    

    Get the count of key value pairs:

    php> echo count($offerarray);
    2
    

    Get the keys as an array:

    php> echo implode(array_keys($offerarray));
    foopyramid
    

提交回复
热议问题