在我的bash脚本中,我想将php函数的输出传递给linux变量.php文件返回一个数组。到目前为止我是这样的
#!/bin/bash
credentials=$(php test.php)
但这会产生错误。更好的方法是什么? 错误:无法将列表分配给数组成员
答案 0 :(得分:0)
以下对我来说很好。您的脚本唯一的问题是您有#!bin/bash
而不是#!/bin/bash
。
#!/bin/bash
credentials=$(php test.php)
echo $credentials