php 解析yaml,php yaml 解析 报错问题
今天用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如下:
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*
請問哪里出了問題?講解時附上簡短代碼,謝謝!
總結
以上是生活随笔為你收集整理的php 解析yaml,php yaml 解析 报错问题的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: web系统软件测试功能点,小程序、app
- 下一篇: c语言补全程序,跪求高手解答简单的程序补