Suneth Kalhara
Suneth Kalhara

Reputation: 1221

Get values stdClass Object PHP

I work with mp4 data extract php script. this returns a stdClass Object as below. can anyone tell me how to show the duration from below object. thank you

stdClass Object
(
    [hasVideo] => 1
    [hasAudio] => 1
    [video] => stdClass Object
        (
            [width] => 472
            [height] => 360
            [codec] => 224
            [codecStr] => H.264
        )

    [audio] => stdClass Object
        (
            [codec] => 224
            [codecStr] => AAC
        )

    [duration] => 622.8
)

Upvotes: 21

Views: 54488

Answers (1)

Blaster
Blaster

Reputation: 9080

You could do:

echo $yourObject->duration;

Upvotes: 46

Related Questions