또한 보기: http://www.php.net/manual/en/function.str_pad.php = Examples = TYPO3 TYPO3 (note the trailing whitespace) TYPO3 TYPO3-=-=- TYPO3 --TYPO3---
상속: extends Neos\FluidAdaptor\Core\ViewHelper\AbstractViewHelper
 /**
  * @test
  */
 public function integersArePaddedCorrectly()
 {
     $this->viewHelper->expects($this->once())->method('renderChildren')->will($this->returnValue(123));
     $actualResult = $this->viewHelper->render(5, '0');
     $this->assertEquals('12300', $actualResult);
 }