<?php // str_pad() : $strings = "this is a string with all words in lowercase"; echo str_pad($strings , 55 , "&") . "\n"; echo str_pad($strings , 55 , "$" , STR_PAD_LEFT) . "\n"; echo str_pad($strings , 55 , "$" , STR_PAD_BOTH);
To embed this program on your website, copy the following code and paste it into your website's HTML: