php输出语句print printf echo sprintf比较
print()语句 echo语句 printf()语句 sprintf()都是php输出语句,但稍微有点区别。下面举例说明。
操作方法
- 01
<?php echo "<p>Some dynamic output here</p>"; ?> <p>Some static output here</p> <?php echo "I love the summertime."; ?> echo语句是语言结构。
- 02
<?php print("<p>I love the summertime.</p>"); ?> <?php $season="summertime"; print("<p>I love the $season.</p>"); ?> print()有返回值。
- 03
printf("Bar inventory: %d bottles of tonic water.",100); // 传入二个参数: printf("%d bottles of tonic water cost $%f",100,43.20); 用来格式化数据。
- 04
$cost=sprintf("$%.2f",43.2); 不会在浏览器显示。
赞 (0)