php yaml 解析 报错问题

发布于 2022-09-06 07:36:26 字数 1214 浏览 11 评论 0

今天用php写了一个简单的博客引擎,其中要用php yaml解析器,但是在使用的过程中遇到了这样的报错

[09-Dec-2017 14:54:25 PRC] PHP Warning:  yaml_parse(): end of stream reached without finding document 0 in /home/twikoizo/public_html/dev/core/module/controller/page.php on line 23

page.php如下:

<?PHP
if (!defined('DEV')) die('Hay , there ! This is a part of the Twic-development-area .');

if (!file_exists(PATH_PAGE.DS.$dev->stage().DS.'content.yaml'))
{
  $dev->redirect('error?error=404');
  exit;
}
else
{
  $content_from_file = file_get_contents(PATH_PAGE.DS.$dev->stage().DS.'content.yaml');
}

//start parsing yaml content file

$content_yaml_parsed = yaml_parse($content_from_file);

//assign the parsed content to the object

$pro->assign($content_yaml_parsed);

//load template

if ($pro->fetch('template') != null)
{
  require_once(PATH_MODULE.DS.'template'.DS.$pro->fetch('template').'.php');
}
else
{
  require_once(PATH_MODULE.DS.'template'.DS.'default.php');
}

?>

测试的yaml文件如下:

title : 开发区首页
template : default
text : >
  #test content
  *to be displayed there*

请问哪里出了问题?讲解时附上简短代码,谢谢!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文