$value ) { $code .= self::encode( $key, $value, 1 ); } $code .= "];\n"; return $code; } /** * Recursively turn one k/v pair into properly-indented PHP * * @param string|int $key * @param mixed $value * @param int $indent Indentation level * @return string PHP code */ private static function encode( $key, $value, $indent ) { $tabs = str_repeat( "\t", $indent ); $line = $tabs . var_export( $key, true ) . ' => '; if ( is_array( $value ) ) { $line .= "[\n"; foreach ( $value as $subkey => $subvalue ) { $line .= self::encode( $subkey, $subvalue, $indent + 1 ); } $line .= "$tabs]"; } else { $line .= var_export( $value, true ); } $line .= ",\n"; return $line; } }