본문 바로가기

Web Progreming/PHP

[ PHP ] str_pad, STR_PAD_LEFT, STR_PAD_BOTH



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