Does anyone know of a good YAML Parser for PHP? If so, what are the pros and cons of this library?
|
|
Updated link for Spyc: http://code.google.com/p/spyc/ Pure PHP implementation, so you don't need to make any modifications to the server for installation. If speed is of dire concern, it might not be the ideal solution, but if you're using YAML for configurations or relatively low-volume use, it is a fantastic solution. Loading information into PHP is as simple as:
Where $myfile is a string or filename (it will attempt to detect if you've passed a filename, and process it. Generating a YAML string is as simple as:
Where $some_array is an array of data to be output. |
||
|
|
|
|
try "spyc" lib http://spyc.sourceforge.net/ |
||
|
|
|
|
if you want to just a simple yaml parser written in PHP itself, I could provide simple free script you may want to adjust if you want. i'm using it quite extensively on Amy Editor for storing bundle definitions. it's easy and with Ruby-like API (Simple YAML::load(..) :). |
||
|
|
|
|
The symfony framework makes very heavy use of YAML, this blog post by Grégoire Hubert demonstrates using their YAML library in a non-symfony project. |
|||
|
|
|
|
I'd suggest the process followed in this article http://devzone.zend.com/article/2585-using-yaml-with-php-and-pecl |
||
|
|
