我可以在lighttpd.conf中定义变量:
myvar = "bar"
foo = myvar ## OK, this works
我也可以定义键值数组:
myarr = ("foo" => "bar", "lol" => "rofl") ## Also OK
但是如何通过此数组中的键访问值?
someval = myarr["foo"] ## No,
someval = myarr("foo") ## No,
someval = myarr.foo ## No, all these doesn't work.
我搜索了很多,但没有找到答案。我在lighttpd.conf中找到了很多定义数组的例子,但没有一个通过键读取值的例子。你是我最后的希望,伙计们。