PHP中格式化字符串的方法有多种,以下是其中几种常用的方法:
$number = 10;
$string = sprintf("The number is %d", $number);
echo $string; // 输出 "The number is 10"
$number = 10;
printf("The number is %d", $number); // 输出 "The number is 10"
$string = "Hello, World!";
$new_string = str_replace("World", "PHP", $string);
echo $new_string; // 输出 "Hello, PHP!"
$string = "Hello, World!";
$new_string = preg_replace("/World/", "PHP", $string);
echo $new_string; // 输出 "Hello, PHP!"
以上是一些常用的PHP字符串格式化方法,具体使用哪种方法取决于需求和个人偏好。