douxian6260 2011-10-05 19:56
浏览 115
已采纳

Symfony sf Yaml :: load返回一个奇怪的值

In a Symfony project, I have the following php code inside a YML file. I was hoping this code would read another yml file and modify the content based upon its value. However, sfYaml::load is returning a string instead of an array. Any ideas why this might be?

In the following code, I expected $s to contain an array, but instead it contains a string with the value "../config/server_settings.yml".

From databases.yml:

dsn:      mysql:host=myhost;dbname=mydbname<?php $s = sfYaml::load('../config/server_settings.yml');var_dump($s); ?>
  • 写回答

2条回答 默认 最新

  • dosi8657 2011-10-05 20:08
    关注

    It looks like it's treating your input as a string of yml content, possibly because it can't find the file. Try using the full path or some quick debugging with is_file('../config/server_settings.yml')

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?