fork(2) download
  1. <?php
  2.  
  3. $str = 'https://content-available-to-author-only.com/video-17781368_166558880?hash=b9c638d13c911163';
  4.  
  5. preg_match_all('#vk.com/video-(\d+)_(\d+)\?hash=(\w+)#', $str, $m);
  6. print_r($m);
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
Array
(
    [0] => Array
        (
            [0] => vk.com/video-17781368_166558880?hash=b9c638d13c911163
        )

    [1] => Array
        (
            [0] => 17781368
        )

    [2] => Array
        (
            [0] => 166558880
        )

    [3] => Array
        (
            [0] => b9c638d13c911163
        )

)