drupal主题开发

drupal8主题 之 yaml格式介绍(yml文件)

日期:2016-06-20 阅读:4355

dmandwp系统 - wordpress系统和DM系统区块建站>>

drupal8主题 之 yaml格式介绍(yml文件)

进入网易云课堂播放
    |    更多视频教程>

yaml格式介绍:

yaml是symfony的一个组件: http://symfony.com/doc/current/components/yaml.html 

The Symfony Yaml component is very simple and consists of two main classes: one parses YAML strings (Parser), and the other dumps a PHP array to a YAML string (Dumper).

通过Parser把yaml转化成php数组。如上面图片。通过Dumper把php数组转成yaml文件。

 

drupal8的配置文件采用了yaml格式,文件扩展名是 yml

最重要的一点是,要用空格,而不要用tab

--------------------------

yaml里的下划线,可以当一般的字符用。

但是一杠加空格的话,如上图。就是当成数组的索引号在用。

 

------------------

在线转化工具 http://yaml-online-parser.appspot.com/ (国内打不开,要用vpn)

(或者用symfony文件测试也行。)

如在src/AppBundle/Controller的DefaultController.php里:

 

其他链接:

https://www.drupal.org/node/1935708

https://en.wikipedia.org/wiki/YAML 

<<点击返回

Drupal8主题开发视频教程 (进入专题>)