我有两个php文件,一个fecthdrive.php和index.php
我目前有一个bash脚本
#!/bin/sh php fetchdrive php start http://localhost/
这将启动我的本地index.php文件,并将fetchdrive.php的输出放入控制台日志作为数组,这是有效的, 这里是从fetchdrive.php输出日志的代码
$feedDrive = &fetching();
printf("%s", json_encode($feedDrive)); ?>
控制台中显示的输出是
["UUENmU0","UbU9ucn"]
哪个是对的。我现在要做的就是将这两个值传递给index.php文件。 现在,在问我为什么不在js中执行php文件之前,它是因为我必须通过CLI运行php文件。那么,我如何在index.php文件中将这两个值传递给html / js?