1. 程式人生 > >php 獲取抖音id

php 獲取抖音id

<?php
 public  function getid($dy_url){
        $header=get_headers($dy_url);
        $str = "/^.*?(\d+).*/";
        preg_match($str,$header[6],$arr);
        return $arr[1];
    }