コード例 #1
0
ファイル: numletra_pi.php プロジェクト: codethics/proteoerp
function numletra($numero)
{
    require_once "Numletra.php";
    $numa = new numletra();
    $numa->setNumero($numero);
    return $numa->letra();
}
コード例 #2
0
ファイル: numletra_pi.php プロジェクト: enderochoa/tortuga
function numletra($numero)
{
    require_once "Numletra.php";
    $numa = new numletra();
    $numa->setNumero($numero);
    $numa->setSufijo("Bs.");
    $numa->setSufijo("Centimos");
    return $numa->letra();
}