python以utf-8读取1.php文件内容
时间: 2023-07-18 08:03:15 浏览: 152
MYSQL数据库使用UTF-8中文编码乱码的解决办法
可以使用以下代码读取 `1.php` 文件内容:
```python
with open('1.php', encoding='utf-8') as f:
content = f.read()
```
其中,`open()` 函数用于打开文件,`encoding='utf-8'` 表示使用 utf-8 编码读取文件内容。`with` 语句用于自动关闭文件。读取的文件内容将存储在变量 `content` 中。
阅读全文