Simon Willison’s Weblog

Subscribe

Simple mini-languages with PHP

12th May 2004

I linked to PDML the other day in my blogmarks, but beyond a cursory glance I hadn’t really dug in to what makes it tick. Dumky over at Curiosity is bliss points out that it makes use of an ingenious output buffering trick. To create a PDML document, you add a single line to the top of a page that includes and executes the PDML library (written in PHP). The rest of the document is written in the custom PDML markup language. The script uses output buffering to capture the rest of the page, then executes a callback function that actually processes the page content (see ob_start() for details).

As Dumky points out, this can be used to implement mini-languages for pretty much anything—and PHP 5’s excellent XML support means most of the parser work is handled for you. It could also act as a neat way of hooking in to things like server-side XSLT processors.

This is Simple mini-languages with PHP by Simon Willison, posted on 12th May 2004.

Next: Supplemental Results

Previous: W3C Internationalisation Guidelines

Previously hosted at http://simon.incutio.com/archive/2004/05/12/simpleMiniLanguages