I had this i array and i try to loop trough.
Output of:<?php print_r($this);?>
[text] => a:2:{i:0;a:2:{s:5:"value";s:2:"de";s:5:"label";s:70:"<img src="assets/images/e/de-02d3d6ee.jpg" width="40" height="28" alt="">";}i:1;a:2:{s:5:"value";s:2:"en";s:5:"label";s:70:"<img src="assets/images/7/en-c5c09767.jpg" width="40" height="28" alt="">";}}
I tried:
<?php $str ='de'; ?>
<?php foreach ($this->text as $key => $item):?>
<?php if ($key == $str):?>
<span class="firstelement hide-on-mobile"><?php echo $item; ?></span>
<?php endif;?>
<?php endforeach;?>
I got no output.