Many PHP programs make use of a localisable string array. The toolkit supports the full localisation of such files with php2po and po2php.
The localisable string arrays appear like this:
<?php $string['name'] = 'value'
Our format support allows:
$string['name'] $string[name] $string[ 'name' ]
$lang = array( 'name' => 'value', 'name2' => 'value2', );