Skip to content

Instantly share code, notes, and snippets.

@sbarrat
sbarrat / DBConnection.php
Created February 8, 2012 18:26
Singleton PDO DB Connection PHP
final class DBConnection {
private static $_handle = null;
private static $_dsn = "mysql:dbname=mydb;host=my.host.com;port=3306";
private static $_user = "myUserName";
private static $_password = "myPassword";
private static $_options = array(PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES utf8"); // SET UTF-8
/**
* Deny Construct
*/
@sbarrat
sbarrat / bugzillaWebService.php
Created January 31, 2012 09:17
XMLRPC_Client Bugzilla with Zend Framework
require_once 'Zend/Loader/Autoloader.php';
Zend_Loader_Autoloader::getInstance();
$server = 'http://bugzilla.mydomain.com/xmlrpc.cgi';
$client = new Zend_XmlRpc_Client( $server );
// Create the http client
$httpClient = new Zend_Http_Client();
$httpClient->setCookieJar();
$client->setHttpClient( $httpClient );
// Bugzilla Login
$params = new Zend_XmlRpc_Value_Struct(
@sbarrat
sbarrat / xmlrpcClientBugzilla.php
Created January 28, 2012 11:45
XMLRCP Client Bugzilla Login
/**
* require PEAR/XML_RPC2 library
* Works fine with bugzilla 4.0.3
*/
require_once 'XML/RPC2/Client.php';
$server = 'http://bugzilla.mydomain.com/xmlrpc.cgi';
$params = array( 'login' => 'bugzilla@mydomain.com','password' =>'mypassword', 'remember' => 1);
$client = XML_RPC2_Client::create( $server );
$userid = $client->__call( 'User.login' , $params );
@sbarrat
sbarrat / Entrada.java
Created January 17, 2012 10:27
Clase que recoge los datos por teclado y devuelve lo que hemos escrito - JAVA
package entrada;
import java.io.*;
/**
* @author Ruben Lacasa
*
*/
public class Entrada {
/**
* @param args