我是php的新手
我需要从同一页面获得两个结果。og:图像和 og:视频
这是我当前的代码
preg_match('/property="og:video" content="(.*?)"/', file_get_contents($url), $matchesVideo);
preg_match('/property="og:image" content="(.*?)"/', file_get_contents($url), $matchesThumb);
$videoID = ($matchesVideo[1]) ? $matchesVideo[1] : false;
$videoThumb = ($matchesThumb[1]) ? $matchesThumb[1] : false;
有没有办法在不复制我的代码的情况下执行相同的操作