Web サイトを開発していて、foreach ループで配列の合計行を取得する必要があります。
これが私のコードです:
$vr = $_GET['vr'];
$dat = file_get_contents("http://example.com"); //this is a datafeed url.
$exp = explode("\n", $dat);
foreach ($exp as $val) {
if($vr == $val) {
// here I have the code if string is found in array. They were found, but I want to get how many were found.
}
機能を試してみましたcount();
が、表示されます111111111111111111
それが可能であることは知っていますが、それを行う方法がわかりません。