Cifre zero pad nella stringa


126

Devo lanciare singole figure (da 1 a 9) a (da 01 a 09). Riesco a pensare a un modo ma è grande, brutto e ingombrante. Sono sicuro che ci deve essere un modo conciso. Eventuali suggerimenti

Risposte:


214

Prima di tutto, la tua descrizione è fuorviante. Doubleè un tipo di dati in virgola mobile. Presumibilmente vuoi riempire le tue cifre con zeri iniziali in una stringa. Il codice seguente lo fa:

$s = sprintf('%02d', $digit);

Per ulteriori informazioni, fare riferimento alla documentazione di sprintf.


@KonradRudolph Se ho passato come digitvalore intero quel tempo dato l'errore, se passo come stringa quell'ora non è un problema
Hiren Bhut

@HirenBhut No. Sono sicuro al 100% che funzioni. Lo dice la documentazione. L'ho anche testato solo per te: gist.github.com/klmr/e1319f6d921a382e86296cce06eb7dbd
Konrad Rudolph

@KonradRudolph Si prega di controllare questo codice gist.github.com/klmr/…
Hiren Bhut

3
@HirenBhut Beh, questo è completamente diverso e non ha nulla a che fare consprintf . Controlla il formato degli interi , in particolare la sezione sulle cifre ottali.
Konrad Rudolph

@KonradRudolph Sì, può una possibile soluzione?
Hiren Bhut

90

C'è anche str_pad

<?php
$input = "Alien";
echo str_pad($input, 10);                      // produces "Alien     "
echo str_pad($input, 10, "-=", STR_PAD_LEFT);  // produces "-=-=-Alien"
echo str_pad($input, 10, "_", STR_PAD_BOTH);   // produces "__Alien___"
echo str_pad($input, 6 , "___");               // produces "Alien_"
?>

67

Soluzione utilizzando str_pad :

str_pad($digit,2,'0',STR_PAD_LEFT);

Benchmark su php 5.3

Risultato str_pad: 0.286863088608

Risultato sprintf: 0.234171152115

Codice:

$start = microtime(true);
for ($i=0;$i<100000;$i++) {
    str_pad(9,2,'0',STR_PAD_LEFT);
    str_pad(15,2,'0',STR_PAD_LEFT);
    str_pad(100,2,'0',STR_PAD_LEFT);
}
$end = microtime(true);
echo "Result str_pad : ",($end-$start),"\n";

$start = microtime(true);
for ($i=0;$i<100000;$i++) {
    sprintf("%02d", 9);
    sprintf("%02d", 15);
    sprintf("%02d", 100);
}
$end = microtime(true);
echo "Result sprintf : ",($end-$start),"\n";

0

Le prestazioni str_paddipendono fortemente dalla lunghezza dell'imbottitura. Per una velocità più costante puoi usare str_repeat .

$padded_string = str_repeat("0", $length-strlen($number)) . $number;

Utilizza anche il valore stringa del numero per prestazioni migliori.

$number = strval(123);

Testato su PHP 7.4

str_repeat: 0.086055040359497   (number: 123, padding: 1)
str_repeat: 0.085798978805542   (number: 123, padding: 3)
str_repeat: 0.085641145706177   (number: 123, padding: 10)
str_repeat: 0.091305017471313   (number: 123, padding: 100)

str_pad:    0.086184978485107   (number: 123, padding: 1)
str_pad:    0.096981048583984   (number: 123, padding: 3)
str_pad:    0.14874792098999    (number: 123, padding: 10)
str_pad:    0.85979700088501    (number: 123, padding: 100)
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.