Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/jquery/72.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Php 使用JQuery搜索google电子表格_Php_Jquery_Arrays_Google Sheets_Google Sheets Api - Fatal编程技术网

Php 使用JQuery搜索google电子表格

Php 使用JQuery搜索google电子表格,php,jquery,arrays,google-sheets,google-sheets-api,Php,Jquery,Arrays,Google Sheets,Google Sheets Api,我想在谷歌电子表格中搜索包含字符串的特定列。 我使用PHP从工作表中读取数据并将其存储到数组中。 打印数组会显示列值,但是当使用(json_encode)时,我只得到数组中的最后一个值,这非常奇怪 这是我的密码: <?php require 'vendor/autoload.php'; ?> <!DOCTYPE html> <html lang="en"> <head> <title>Publications</title>

我想在谷歌电子表格中搜索包含字符串的特定列。 我使用PHP从工作表中读取数据并将其存储到数组中。 打印数组会显示列值,但是当使用(json_encode)时,我只得到数组中的最后一个值,这非常奇怪

这是我的密码:

<?php
require 'vendor/autoload.php';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Publications</title>
<meta charset="utf-8">
</head>
<body>
    <?php
    $client = new \Google_Client();
    $client->setApplicationName('Google Sheets and PHP');
    $client->setScopes([\Google_Service_Sheets::SPREADSHEETS]);
    $client->setAccessType('offline');
    $credentials_file = __DIR__ . "/TestCase-641dce71a5df.json";
    $spreadsheetId = '1wP-NqVcGK9CBSPQRQ_oognVuKF07wsuiHjOAP0rQ3xI';
    $range = 'Responses!F2:F';
    $client->setAuthConfig($credentials_file);
    $service = new Google_Service_Sheets($client);
    $response = $service->spreadsheets_values->get($spreadsheetId, $range);
    $values = $response->getValues();
    if (empty($values)) {
        print "No data found.\n";
    } else {
        foreach ($values as $row) {
            $values_array = array($row[0]);
            echo "Normal:",json_encode($values_array), "\n";
        }
    }
    ?>
<script src="https://code.jquery.com/jquery-3.3.1.js"></script>
<script src="https://cdn.datatables.net/1.10.20/js/jquery.dataTables.min.js"></script>
<script src="https://cdn.datatables.net/1.10.20/js/dataTables.bootstrap.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
  $("#myInput").on("keyup", function() {
    var value = $(this).val().toLowerCase();
    var complexArray = <?php echo json_encode($values_array); ?>;
    console.log(complexArray);
    $("complexArray").filter(function() {
      $(this).toggle($(this).text().toLowerCase().indexOf(value) > -1)
    });
  });
});
</script>
<h2>Filterable Table</h2>
<p>Type something in the input field to search</p>  
<input id="myInput" type="text" placeholder="Search..">
<br><br>
</body>
</html>

出版物
$(文档).ready(函数(){
$(“#myInput”)。在(“keyup”,function()上{
var value=$(this.val().toLowerCase();
变量complexArray=;
控制台日志(complexArray);
$(“complexArray”).filter(函数(){
$(this).toggle($(this).text().toLowerCase().indexOf(value)>-1)
});
});
});
可过滤表
在输入字段中键入要搜索的内容



我非常感谢您对解决此问题的支持。 顺致敬意,
Rahaf

您正在将数组重写为此处的最后一个值:

$values_array = array($row[0]);
试一试

var complexArray=;
var complexArray = <?php echo json_encode($values); ?>;