$str = '["steam:CONTENT","license:CONTENT","discord:CONTENT","ip:CONTENT"]';
$items = json_decode($str);
foreach($items as $item) {
$parts = explode(':', $item);
if ($parts[0] === 'steam') {
var_dump($parts[1]);
}
}
Ich würde mich aber hüten Daten so abzuspeichern. Das...