获取PHP中的bugzilla错误列表

时间:2011-01-10 13:53:11

标签: php feed bugzilla

是否可以通过PHP从bugzilla安装中获取所有新bug的列表? 我可以看到有xmlrpc.cgi文件,但我找不到任何如何使用它的例子

任何帮助表示赞赏 谢谢!

3 个答案:

答案 0 :(得分:4)

示例如何使用Zend_Http_Client执行此操作。您也可以使用原始PHP来完成它。 http://petehowe.co.uk/2010/02/23/example-of-calling-the-bugzilla-api-using-php-zend-framework/

答案 1 :(得分:2)

我实际上发现我可以使用...

获取原始XML
/buglist.cgi?ctype=atom&bug_status=NEW

答案 2 :(得分:2)

这是你要找的东西,XMLRPC Bugzilla

示例XMLRPC调用:

<?php
// Add the Zend Library, make sure this is installed: sudo apt-get install libzend-framework-php
ini_set("include_path", "/usr/share/php/libzend-framework-php");

// Add the AutoLoader, Calls any Library that's needed
require_once('Zend/Loader/Autoloader.php');
Zend_Loader_Autoloader::getInstance();

// New client that calls your Bugzilla XMLRPC server
$server = new Zend_XmlRpc_Client('http://bugzilla.yourdomain.com/xmlrpc.cgi');
$client = $server->getProxy(); 

// Create the Multi-Call array request
$request = array(
    array(
        'methodName' => 'system.listMethods', 
        'params'     => array() 
    )); 

/*
// Example: Multi call array format
$request = array(
    array(
        'methodName' => 'system.listMethods', 
        'params'     => array() 
    ),
    array(
        'methodName' => 'your_service.your_function', 
        'params'     => array('parm') 
    )); 

*/

// $response is an array() 
$response = $client->system->multicall($request); 

// Print the array
echo print_r($response,true);

?>