Get values stdClass Object PHP

后端 未结 1 1315
臣服心动
臣服心动 2020-12-06 10:08

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

         


        
相关标签:
1条回答
  • 2020-12-06 10:45

    You could do:

    echo $yourObject->duration;
    
    0 讨论(0)
提交回复
热议问题