私は初心者のプログラマーであるため、私を許してください。結果の $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);
?>