Hi! Could we please enable some services and cookies to improve your experience and our website?

PHPize Online / SQLize Online  /  SQLtest Online

A A A
Login    Share code      Blog   FAQ

Online Sandbox for SQL and PHP: Write, Run, Test, and Share SQL Queries and PHP Code

Copy Format Clear

Stuck with a problem? Got Error? Ask AI support!

Copy Clear
Copy Format Clear
<?php $string = "drop_frames=0 speed=2.97x progress=continue frame=540 fps=190.96 stream_0_0_q=-1.0 bitrate=3421.4kbits/s total_size=3827741 out_time_us=8950065 out_time_ms=8950065 out_time=00:00:08.950065 dup_frames=0 drop_frames=0 speed=3.16x progress=end"; $pattern = '/progress=end/'; preg_match($pattern, $string, $matches); $time = $matches[1]; var_dump($time);
Copy Clear