gpt4 book ai didi

symfony - Twig 从 Yaml 文件写入

转载 作者:行者123 更新时间:2023-12-05 03:14:39 27 4
gpt4 key购买 nike

我有这个问题:我的 yaml 文件:

locale: en 
codes:
button.cancel: Cancel
button.accept: Accept
radio.male: Male
radio.female: Female

我需要将所有 yaml 文件写入我的页面

Controller Action :

/**
* @Route("/read/")
* @Template()
*/
public function readAction()
{
$yaml = new Parser();
$file = $yaml->parse(file_get_contents(getcwd() .'/file.yml'));
return $this->render('AnyoneYamlGeneratorBundle:GenerateController:read.html.twig', array(
'files' => $file,
));
}

我的 Twig 文件:

{% for file in files %}
{% for key,value in file %}
{{key}}: {{value}}<br>
{% endfor %}
{% endfor %}

我的浏览器的答案是

button.cancel: Cancel
button.accept: Accept
radio.male: Male
radio.female: Female

我需要我所有的 yaml 文件感谢帮助

最佳答案

好的,我解决了这是 Twig 文件:

locale: {{files["locale"]}}<br>
codes:<br>
{% for file in files %}
{% for code,value in file %}
&nbsp;{{code}}: {{value}}<br>
{% endfor %}
{% endfor %}

关于symfony - Twig 从 Yaml 文件写入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23983992/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com