我想弄清楚这一点,我想从变量或任何 php 代码中回显信息,任何'http://vine.co/v/'
人line 3
都可以帮助我吗?
我的代码:
<?php
$vine = file_get_contents('http://vine.co/v/', false, $test);
$test = "haiKqBFA9Yw";
preg_match('/property="og:image" content="(.*?)"/', $vine, $matches);
$url = $matches[1];
$url = str_replace( 'https://', 'http://', $url );
$url = str_replace( 'versionId=', '', $url );
$img = $url;
$url = substr($img, 0, strpos($img, "?"));
echo $url;
它只是返回$test
没有定义的变量。