Need to add multiple values in following code .
$params = array('Source' => '531582253444',
'Destination' => $mob,
'Mask' => $sender,
'Message' => $message,
'UniCode' => $unicode,
'Password' => '123');
above code working fine if $mob having single value like .
$mob = 531582253444
Need to add Like dynamically considering $mob as array
$params = array('Source' => '531582253444',
'Destination' => $mob,
'Destination' => $mob,
'Destination' => $mob,
'Destination' => $mob,
'Destination' => $mob,
'Mask' => $sender,
'Message' => $message,
'UniCode' => $unicode,
'Password' => '123');
we have multiple values stored in array with variable name $mob . we can add dynamically ?