Forum Moderators: coopster
#
# phpBB Template Configuration File
#
# @package phpBB3
# @copyright (c) 2006 phpBB Group
# @license http://opensource.org/licenses/gpl-license.php GNU Public License
#
#
# At the left is the name, please do not change this
# At the right the value is entered
# For on/off options the valid values are on, off, 1, 0, true and false
#
# Values get trimmed, if you want to add a space in front or at the end of
# the value, then enclose the value with single or double quotes.
# Single and double quotes do not need to be escaped.
#
#
# General Information about this template
name = ***********
copyright = © 2010, ****************
version = 3.0.8
# Defining a different template bitfield
template_bitfield = lNg=
$version = null;
foreach ($lines as $line) {
if (preg_match('/^version/i',$line)) {
list ($tag,$Version) = explode ('=',$line);
// if you want to remove space, or use str_replace()
$Version = preg_replace('/\s+/','',$Version);
break; // no need to read in the rest of the file
}
}
Well?