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字符串格式化方法,具體使用哪種方法取決于需求和個人偏好。