您可以使用rand()函數生成隨機數字,然后使用substr_replace()函數將隨機數字插入到指定字符串中的隨機位置。
以下是一個示例代碼:
<?php
function insertRandomNumber($str) {
$randomNumber = rand(0, 9); // 生成隨機數字
$randomPosition = rand(0, strlen($str)); // 生成隨機位置
// 將隨機數字插入到指定字符串的隨機位置
$result = substr_replace($str, $randomNumber, $randomPosition, 0);
return $result;
}
$str = "Hello World!";
$result = insertRandomNumber($str);
echo $result;
?>
運行上述代碼,會在指定字符串中隨機輸出一個數字。