运行 ❯
获取您自己的
PHP
服务器
×
更改方向
更改主题,暗/亮
转到 Spaces
<!DOCTYPE html> <html> <body> <?php $str1 = "Hello"; $str2 = "Hello world!"; printf("[%s]<br>",$str1); // String printf("[%8s]<br>",$str1); // Right-justifies the string with spaces printf("[%-8s]<br>",$str1); // Left-justifies the string value with spaces printf("[%08s]<br>",$str1); // Zero-padding printf("[%'*8s]<br>",$str1); // Adds "*" printf("[%8.8s]<br>",$str2); // Left-justifies the string with spaces (cuts off characters after the specified value) ?> </body> </html>