Untitled

Anonymous
plain_text
04/05/2022 8:01 AM
272 B
20
Indexable
$xmlProducts = [];

foreach($xml->item as $item){
    if(strpos($item->urunadi, 'atlet') !== false{
        $xmlProducts['selected'][] = $item;
    }else{
        $xmlProducts['others'][] = $item;
    }
}
Editor is loading...