This post originated from an RSS feed registered with PHP Buzz
by Mike Naberezny.
Original Post: PHP, Meet YAML
Feed Title: Rails for PHP Developers
Feed URL: http://railsforphp.com/feed/
Feed Description: Rails for PHP Developers is about learning Ruby and Rails from a PHP developer's perspective.
Just about every PHP application needs some kind of configuration, if only to define the connection to a database. One popular way to store configuration is to use a PHP file itself because it’s convenient and fast for PHP to read. This approach is taken by the Solar PHP Framework and many others.
However, [...]