how can i get [array] tags recods in php loop

I need some help with my code as I have a hard time with fetching the value from the stdclass. can i get tags data from std array in loop please help me i am stuck here

Array
(
[0] => stdClass Object
    (  
        [gp_package_id_csv] => 
        [ba_hoursperweek] => 40
        [tags] => Array
            (
                [0] => stdClass Object
                    (
                        [KAUFMÄNNISCH] => Sachbearbeitung
                    )

            )
    )
[2] => stdClass Object
    (
        [gp_package_id_csv] => 
        [ba_hoursperweek] => 45
        [tags] => Array
            (
                [0] => stdClass Object
                    (
                        [MARKETING] => Kaufmännisch
                    )

                [1] => stdClass Object
                    (
                        [DIREKTVERMITTLUNG] => Direktvermittlung
                    )

            )
    )
[3] => stdClass Object
    ( 
        [gp_package_id_csv] => 
        [ba_hoursperweek] => 46
        [tags] => Array
            (
            )
    )
)