start

PHP

Many PHP programs make use of a localisable string array. The toolkit support the full localisation of such files with php2po and po2php.

Example

The localisable string arrays appear like this:

<?php
$string['name'] = 'value'

Conformance

Our format support allows:

$string['name']
$string[name]
$string[ 'name' ]

Non-Conformance

The following are not yet supported:

$lang = array(
   'name' => 'value',
   'name2' => 'value2',
);