Exemple #1
0
<?php

/**!
 * ----------------------------------------------------------------------------
 * "THE BEER-WARE LICENSE" (Revision 42):
 * <*****@*****.**> wrote this file. As long as you retain this notice you
 * can do whatever you want with this stuff. If we meet some day, and you think
 * this stuff is worth it, you can buy me a beer in return Cesar Rodas.
 * ----------------------------------------------------------------------------
 */
require "../demo_config.php";
try {
    $bancard = new Bancard(new Bancard_Config_Demo());
    $bancard->pedido();
} catch (Bancard_Exception $e) {
    die($e->getMessage());
}
<?php

/**!
 * ----------------------------------------------------------------------------
 * "THE BEER-WARE LICENSE" (Revision 42):
 * <*****@*****.**> wrote this file. As long as you retain this notice you
 * can do whatever you want with this stuff. If we meet some day, and you think
 * this stuff is worth it, you can buy me a beer in return Cesar Rodas.
 * ----------------------------------------------------------------------------
 */
require "../demo_config.php";
try {
    $bancard = new Bancard(new Bancard_Config_Demo());
    $confirmacion = $bancard->confirmacion();
    // hacer algo con este array
    var_Dump($confirmacion);
} catch (Bancard_Exception_Monto $e) {
    /* bancard cobro menos de lo que pedimos */
    exit;
} catch (Bancard_Exception $e) {
    /* otro error */
    exit;
}
Exemple #3
0
<?php

/**!
 * ----------------------------------------------------------------------------
 * "THE BEER-WARE LICENSE" (Revision 42):
 * <*****@*****.**> wrote this file. As long as you retain this notice you
 * can do whatever you want with this stuff. If we meet some day, and you think
 * this stuff is worth it, you can buy me a beer in return Cesar Rodas.
 * ----------------------------------------------------------------------------
 */
require "../demo_config.php";
/**
 *  Pagina de ejemplo de como cobrar
 */
try {
    $bancard = new Bancard(new Bancard_Config_Demo());
    $dolares = 50;
    $bancard->cobrar($dolares * 4100, 'dollar', $dolares);
} catch (Bancard_Exception $e) {
    die($e->getMessage());
}