在 PHP 8.3 中,我正在使用yaml_parse_file()读取一个如下所示的文件:
summary: "Apples
Apples are a delicious fruit, unless they have worms in them."
当我json_encode()
使用生成的数组parse_yaml_file()
然后将其输出到文件时,输出如下所示:
Apples
Apples are a delicious fruit, unless they have worms in them."
因此,它似乎yaml_parse_file()
在修剪空格,并删除Apples
和之间的空白行Apples are a delicious fruit.
但是我需要保留该空白行。有没有简单的方法可以保留它,还是我必须在yaml_parse_file()
删除它之后再将其添加回来?