vote up 5 vote down star

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

flag

57% accept rate

6 Answers

vote up 3 vote down

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:

include_once('spyc.php');
$data = Spyc::YAMLLoad($myfile);

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:

$yaml_str = Spyc::YAMLDump($some_array);

Where $some_array is an array of data to be output.

link|flag
vote up 0 vote down

try "spyc" lib http://spyc.sourceforge.net/

link|flag
vote up -1 vote down

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.

view/download here

i'm using it quite extensively on Amy Editor for storing bundle definitions. it's easy and with Ruby-like API (Simple YAML::load(..) :).

link|flag
vote up 4 vote down

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.

link|flag
vote up 3 vote down

I'd suggest the process followed in this article http://devzone.zend.com/article/2585-using-yaml-with-php-and-pecl

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.