$month = "Февраль";
...
switch($month){
case "Январь": if(strpos($element["NAME"], "кофта") > 0) $res = $element["ID"]; break;
case "Июнь": if(strpos($element["NAME"], "футболка") > 0) $res = $element["ID"]; break;
case "Сентябрь": if(strpos($element["NAME"], "шор") > 0) $res = $element["ID"]; break;
}
$str = 'Welcome, @user! Welcome, @user2!';
echo preg_replace('/@([a-z0-9]+)/i', '<a href="profile.php?user=$1" >@$1</a>', $str);
<?php foreach ($totals as $total) {
if( $total['title'] === 'Сумма' ) continue;
?>
<tr>
<td><b><?php echo $total['title']; ?>:</b></td>
<td><strong><?php echo $total['text']; ?></strong></td>
</tr>
<?php } ?>
<html>
тег, вот тут говорится об этом подробнее:$array = [
'a' => [
'b' => [
'c' => [
'd' => 'text'
]
]
]
];
function set_value($indexes, &$array, $data)
{
if(count($indexes) > 1){
set_value(array_slice($indexes, 1), $array[$indexes[0]], $data);
}else{
$array[$indexes[0]] = $data;
}
}
set_value(['a', 'b', 'c', 'd'], $array, 'TEST DATA');