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:
- php-yaml: wrapper libyaml. available pecl extension; 1 on php's docs.
- syck: binding syck; available pecl extension. (dated, see below)
pure php implementations:
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
Post a Comment