Run ❯
Get your
own PHP
server
❯
Run Code
Ctrl+Alt+R
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
",$str1); // String printf("[%8s]
",$str1); // Right-justifies the string with spaces printf("[%-8s]
",$str1); // Left-justifies the string value with spaces printf("[%08s]
",$str1); // Zero-padding printf("[%'*8s]
",$str1); // Adds "*" printf("[%8.8s]
",$str2); // Left-justifies the string with spaces (cuts off characters after the specified value) ?>