我需要从PHP中的“libconfig”格式文件中读取和写入变量。但我找不到任何地方的图书馆。我当然知道C / C ++库,但是我们必须编写一个扩展来使用它。
是否存在这样的库或扩展名?
答案 0 :(得分:0)
function parseLibconfig_section( &$Array, &$LineID ){
$RetVal = array(); // Initializing return value as empty array
while( count( $Array ) > $LineID ){ // While not riches last line
if( stripos( $Array[$LineID] , ':' ) !== false ){
// In case we have section Title - just remember it
// The section will parsed later at section begin (next loop)
$TArr = explode( ' ', trim( $Array[$LineID] ) );
$CS = $TArr[0];
} elseif( stripos( $Array[$LineID] , '{' ) !== false ){
// We at section open Tag -> call recurrent function to parse
// from next line of input data
$LineID++;
$RetVal[$CS] = parseLibconfig_section( $Array, $LineID );
} elseif( stripos( $Array[$LineID] , '}' ) !== false ){
// End of section - return back from subsection
break;
} else {
// nor section begin/ nor section end - parse line as field
// by standard PHP function parse_ini_string (please see PHP ref)
$TVrr = parse_ini_string( trim( $Array[$LineID] ) );
if( count( $TVrr ) ){
// fill return array by fields from parse_ini_string function
foreach( $TVrr as $Key => $Val ) $RetVal[$Key] = $Val;
};
};
// Next please!
$LineID++;
};
return $RetVal;
};
function parseLibconfig( $FName ){
$RetVal = array(); // Initializing return value as empty array
$Data = file( $FName ); // Reading content of libconfig's
// config file into array of lines
if( count($Data)> 0 ){ // If we have some data read then - working
$Index = 0; // Init an variable to pass by reference into
// function that will be called recursively
$RetVal = parseLibconfig_section( $Data, $Index );
};
return $RetVal;
};
答案 1 :(得分:-1)
使用the documentation中详述的C或C ++ API编写一个小程序,将libconfig格式文件转换为JSON或XML(或者如果您感觉冒险,PHP的序列化格式),然后使用PHP库来处理那个输出。如果文件没有改变,你甚至可以缓存转换后的表格。
您可以从PHP调用外部程序并使用exec()获取输出。
最好的解决方案当然是为库编写PHP绑定,但是根据这个库对你的应用程序的重要程度,这可能是不值得的。
查看格式,我不建议尝试使用正则表达式来解析文件。