请原谅我,因为我是一个新手程序员。如何将结果 $matches (preg_match) 值(去掉第一个字符)分配给 php 中的另一个变量 ($funded)?您可以在下面看到我的内容:
<?php
$content = file_get_contents("https://join.app.net");
//echo $content;
preg_match_all ("/<div class=\"stat-number\">([^`]*?)<\/div>/", $content, $matches);
//testing the array $matches
//echo sprintf('<pre>%s</pre>', print_r($matches, true));
$funded = $matches[0][1];
echo substr($funded, 1);
?>