我想从 Google 电子表格中检索数据并在我的网站上显示结果,而不是显示所有内容。
这是我的代码:-
$logfile = file("<LINK TO MY GOOGLE SPREADSHEET)");
$findme = 'code200';
foreach($logfile as $line_num => $line) {
$pos = strpos($line, $findme);
if ($pos === false) {
echo "The string '$findme' was not found in the string '$logfile'";
}
}