- explode: documentation ( source)
<?php
$input = "google-play argos-cashback-uk currys-b2b tesco costa new-look boots-digital starbucks m-and-s-uk-cb airbnb sainsburys-cashback-uk jlp asda tk-maxx just-eat";
$array = explode("\t", $input);
foreach ($array as $key => $value) {
echo " {\n";
echo ' "referenceId": "'.$value.'",' . "\n";
echo ' "position": "'.$key + 1 . "\n";
echo ' {,' . "\n";
}