how do i push new array without numeric key?
$array = array(\'connect\' => array(\'mydomain.com\' => 1.99) ); $new_array[\'mynewdomain.com\'] = 2.99;
Simply append element to the array.
$array['connect']['mynewdomain.com'] = 2.99;
No need to do array_push(). Just use PHP's in built constructs to get the job done.
array_push()
PHP
In Built language constructs are more faster than in built functions and custom functions.