parsing - PHP YAML Parsers -


does know of yaml parser php? if so, pros , cons of library?

last updated: july 26th, 2017

here's summary of state of yaml in php:

  • wrappers c libraries: you'll want these if need sheer speed:
  • pure php implementations:

    • sfyaml: symfony's yaml component. can see authors' motivations here. wanted "easy use, fast, unit tested , had clear error messages."
    • spyc: yaml parser without dependencies

at time of writing, latest versions release dates aforementioned libraries , versions of yaml spec (1.2 latest version) 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, of 1.2 spyc       0.6.2     2017-02-24     yaml 1.1  

Comments

Popular posts from this blog

windows - Why does Vista not allow creation of shortcuts to "Programs" on a NonAdmin account? Not supposed to install apps from NonAdmin account? -

c++ - How do I get a multi line tooltip in MFC -

unit testing - How to mock PreferenceManager in Android? -