我们开始构建一个连接到iccube的php应用程序,我想要一个olap4php示例,因为在iccube文档中找不到它。
特别是,我需要提供程序在构建到iccube的连接对象时使用。
// Example for Mondrian
$connection = new Connection(
new SoapAdaptator('http://localhost:8080/mondrian/xmla'),
array(
'DataSourceInfo' => '**Provider**=Mondrian;DataSource=MondrianFoodMart;'
'CatalogName' => 'FoodMart',
'schemaName' => 'FoodMart'
)
);
你能帮助我吗?
最佳答案
olap4php使用xmla协议,目录是iccube的模式:
$properties = array(
XMLAConnection::PROP_CATALOG => 'Your icCube Schema'
);
$connection = new XMLAConnection( 'http://localhost:8282/icCube/xmla', $properties );
关于php - icCube与olap4php,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20492544/