Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PHP YAML Parsers [closed]

Tags:

php

parsing

yaml

Does anyone know of a good YAML Parser for PHP? If so, what are the pros and cons of this library?

like image 633
sgibbons Avatar asked Nov 16 '08 20:11

sgibbons


1 Answers

Last updated: July 26th, 2017

Here's a summary of the state of YAML in PHP:

  • Wrappers to C libraries: You'll probably want these if you need sheer speed:
    • php-yaml: Wrapper for LibYAML. Available as a PECL extension; it is also the one on PHP's docs.
    • syck: Binding to syck; also available as a PECL extension. (dated, see below)

  • Pure PHP implementations:

    • sfYaml: Symfony's YAML component. You can see its authors' motivations here. He wanted something that was "easy to use, fast, unit tested and had clear error messages."
    • spyc: YAML parser without dependencies

At the time of this writing, the latest versions release dates for the aforementioned libraries and the versions of the YAML spec (1.2 is the latest version) they support are:

php-yaml   1.3.0     2016-09-24     YAML 1.1  [PHP 5] php-yaml   2.0.0     2016-09-24     YAML 1.1  [PHP 7] syck       0.9.3     2008-11-18     YAML 1.0 sfYaml     3.3.5     2017-06-15     YAML 1.1, most of 1.2 spyc       0.6.2     2017-02-24     YAML 1.1  
like image 184
NullUserException Avatar answered Sep 28 '22 11:09

NullUserException