“str_pad in PHP” Code-Antworten

PHP 0 Padding übrig


<?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_"
echo str_pad($input,  3, "*");                 // produces "Alien"
?>

Matteoweb

PHP str_pad funktioniert nicht

str_pad($myString, 9, '0', STR_PAD_LEFT);
// "000024896"
Unfunny Flamingo

str_pad in PHP

str_pad($myString, 9, '0', STR_PAD_LEFT);
Achinto Karmakar

Ähnliche Antworten wie “str_pad in PHP”

Fragen ähnlich wie “str_pad in PHP”

Weitere verwandte Antworten zu “str_pad in PHP” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen