<?php
$str = <<<STR
Height:
3/16
Color:
Standard Red
Material:
Die-cut, pressure-sensitive paper
Package Quantity:
1000/Pkg
Reusable:
Yes
Size:
3/16 H x 1/4 W
STR;
$lines = explode("\n", $str);
$combined = array_map(
function($line) { return implode(' ', $line); },
array_chunk($lines, 2)
);
print_r($combined);
- Output for 5.6.38, 7.1.0 - 7.1.25, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.33, 8.2.0 - 8.2.29, 8.3.0 - 8.3.26, 8.4.1 - 8.4.13
- Array
(
[0] => Height: 3/16
[1] => Color: Standard Red
[2] => Material: Die-cut, pressure-sensitive paper
[3] => Package Quantity: 1000/Pkg
[4] => Reusable: Yes
[5] => Size: 3/16 H x 1/4 W
)
preferences:
47.42 ms | 408 KiB | 5 Q