php函数中把一段文本的第一行替换成别的字,怎么写?
时间: 2024-05-28 18:09:08 浏览: 30
php字符串替换函数substr_replace()用法实例
您可以使用PHP中的str_replace函数,将原始文本的第一行替换为其他文本。具体代码如下:
$originalText = "Hello, welcome to my website.\nThis is the second line of the text.";
$replacementText = "Hi there!";
$newText = str_replace(explode("\n", $originalText)[0], $replacementText, $originalText);
这个代码将原始文本的第一行替换为“Hi there!”并将结果存储在$newText变量中。
阅读全文