There is an array() . How to programmatically add to it use = 123qwerty and like = yes1 , i.e. to make the array look like this: array("use" => "123qwerty", "like" => "yes1") ?

    1 answer 1

     //так $arr['use'] = '123qwerty'; $arr['like'] = 'yes1'; //или так $arr2=array('use' => '123qwerty', 'like' => 'yes1');