當前位置: 首頁>>代碼示例>>PHP>>正文


PHP numerotexto函數代碼示例

本文整理匯總了PHP中numerotexto函數的典型用法代碼示例。如果您正苦於以下問題:PHP numerotexto函數的具體用法?PHP numerotexto怎麽用?PHP numerotexto使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了numerotexto函數的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: number_format

        $signo = '-';
    } else {
        $signo = '';
    }
    //echo '<br>'.$myrow['precioVenta']*$myrow['cantidad'];
    $pdf->Cell(0, 0, $signo . '$ ' . number_format($myrow['precioVenta'] * $myrow['cantidad'], 2), 0, 0, R);
    //************cierra pruebas
    $pdf->Ln(2);
    //salto de linea
    //$pdf->Ln(1); //salto de linea
}
//cierra while
$TOTAL = $cargos[0] + $ivaCargos[0] - ($abonos[0] + $ivaAbonos[0]);
$centavos = strstr($TOTAL, '.');
$centavos = substr($centavos, '1');
$resultado = numerotexto($TOTAL);
$totalCaracteres = strlen($centavos);
if ($totalCaracteres == '1') {
    $centavos = $centavos . '0';
}
if (!$centavos) {
    $centavos = '00';
}
$formula = 'pesos ' . $centavos . '/100 M.N.';
$formula = trim($formula);
$Y = 120;
//linea de abajo
if ($registros < 9) {
    $pdf->Line(2, 117, 199, 117);
    //**********************************************SIGNATURE******
    if ($myrow311['seguro']) {
開發者ID:rusli-nasir,項目名稱:hospitalPhp,代碼行數:31,代碼來源:imprimirCargosInternos.php

示例2: numerotexto

//************cierra pruebas


$pdf->Ln(2); //salto de linea
//$pdf->Ln(1); //salto de linea

} //cierra while


$TOTAL=$cargos[0]+$ivaCargos[0];
$sandra=$TOTAL-$totalDescuento[0]-$totalBeneficencia[0]-$totalCortesia[0];
$centavos=strstr($sandra,'.');
$centavos=substr($centavos,'1');
//**********
$resultado= numerotexto($sandra); 
$totalCaracteres=strlen($centavos);
if($totalCaracteres=='1'){
$centavos=$centavos.'0';
}
if(!$centavos){
$centavos='00';
}

$formula= 'pesos '.$centavos.'/100 M.N.';
$formula=trim($formula);

$Y=120;


//linea de abajo
開發者ID:rusli-nasir,項目名稱:hospitalPhp,代碼行數:30,代碼來源:reciboOFT.php

示例3: strstr

                $descripcion = 'Tipo de Pago: ' . $myrow['tipoPago'];
            }
        }
    }
    $pdf->SetX('7');
    $pdf->SetFont('Arial', '', 10);
    $pdf->Cell(0, 0, $myrow['descripcionArticulo'], 0, 0, L);
    //************cierra pruebas
    $pdf->Ln(2);
    //salto de linea
    //$pdf->Ln(1); //salto de linea
}
//cierra while
$centavos = strstr($TOTAL[0], '.');
$centavos = substr($centavos, '1');
$resultado = numerotexto($TOTAL[0]);
$totalCaracteres = strlen($centavos);
if ($totalCaracteres == '1') {
    $centavos = $centavos . '0';
}
if (!$centavos) {
    $centavos = '00';
}
$formula = 'pesos ' . $centavos . '/100 M.N.';
$formula = trim($formula);
$Y = 120;
//linea de abajo
$pdf->Line(2, 115, 200, 115);
$pdf->SetFont('Arial', '', 10);
$pdf->SetY($Y);
$pdf->Cell(0, 0, "Subtotal: " . "\$" . number_format($TOTAL[0], 2), 0, 0, R);
開發者ID:rusli-nasir,項目名稱:hospitalPhp,代碼行數:31,代碼來源:imprimirPagosCxC.php

示例4: mysql_db_query

    $result40 = mysql_db_query($basedatos, $sSQL40);
    $myrow40 = mysql_fetch_array($result40);
    $sSQL40a = "\r\n        SELECT\r\ndescripcion\r\nFROM\r\nalmacenes\r\nWHERE\r\nalmacen='" . $myrow['almacenDestino'] . "'\r\n\r\n";
    $result40a = mysql_db_query($basedatos, $sSQL40a);
    $myrow40a = mysql_fetch_array($result40a);
    $pdf->SetX('7');
    $pdf->Cell(0, 0, $myrow40['descripcion'], 0, 0, L);
    $pdf->Ln(5);
    //salto de linea
}
$pdf->Ln(2);
//salto de linea
//$pdf->Ln(1); //salto de linea
$centavos = strstr($TOTAL[0], '.');
$centavos = substr($centavos, '1');
$resultado = numerotexto($TOTAL[0] + $sumaIVA[0]);
$totalCaracteres = strlen($centavos);
if ($totalCaracteres == '1') {
    $centavos = $centavos . '0';
}
if (!$centavos) {
    $centavos = '00';
}
$formula = 'pesos ' . $centavos . '/100 M.N.';
$formula = trim($formula);
$Y = 120;
//linea de abajo
$pdf->Line(2, 115, 200, 115);
$pdf->SetFont('Arial', '', 10);
$pdf->SetY($Y);
$pdf->Cell(0, 0, "Subtotal: " . "\$" . number_format($TOTAL[0], 2), 0, 0, R);
開發者ID:rusli-nasir,項目名稱:hospitalPhp,代碼行數:31,代碼來源:imprimirReciboPaquetes.php


注:本文中的numerotexto函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。