我正在使用$file_contents = file_get_contents($file_name)
然后使用$file_contents = array_splice($file_contents, 30, 7, 'changedText')
来更新文件代码中的某些内容。然而,这不断导致:
Warning: array_splice(): The first argument should be an array
据我了解, file_get_contents() 返回的字符串应该能够像任何其他数组一样被处理。有什么理由让我遇到麻烦吗?非常感谢!