php 将文本1:央视#genre#CCTV1httpdbiptvsnchinamobilecomPLTV888888902243221226231indexm3u8CCTV2httpdbiptvsnchinamobilecomPLTV888888902243221226195indexm3u8CCTV3httpdbiptvsnchinamobilecomPLTV88888890224322122
$name, 'url' => $url];
}
}
$data2 = [];
foreach ($arr2 as $line) {
if (strpos($line, '#genre#') !== false) {
$genre = $line;
} else {
list($name, $url) = explode(',', $line);
$data2[] = ['name' => $name, 'url' => $url];
}
}
// 合并对象数组
$data = array_merge($data1, $data2);
// 按键名排序
usort($data, function($a, $b) {
return strcmp($a['name'], $b['name']);
});
// 生成原格式文本
$text = $genre . PHP_EOL;
foreach ($data as $item) {
$text .= $item['name'] . ',' . $item['url'] . PHP_EOL;
}
echo $text;
?
原文地址: http://www.cveoy.top/t/topic/cp0N 著作权归作者所有。请勿转载和采集!