我致力于为 github完成一个网站 ( https://rushwallet.com/ ) 的 API。
我正在使用 PHP 并尝试从以下 URL 检索钱包地址:https ://rushwallet.com/#n3GjsndjdCURphhsqJ4mQH7AjiXlGI 。谁能帮助我?
到目前为止我的代码:
$url = "https://rushwallet.com/#n3GjsndjdCURphhsqJ4mQH7AjiXlGI";
$open_url = str_get_html(file_get_contents($url));
$content_url = $open_url->find('span[id=btcBalance]', 0)->innertext;
die(var_dump($content_url));