如何使用fopen和fget读取文件特定的文本

时间:2018-06-09 04:56:35

标签: php

我有一个config.txt文件,用于将凭据存储到服务器。我需要阅读特定点enter image description here

的凭据

从上面的图片中我需要读取仅在两个:: position

之后开始的三个变量

1 个答案:

答案 0 :(得分:4)

只需使用正则表达式:

<?php
$pattern = '/server_name::(.*)$/';
$file = '/Your/file/path/here';
preg_match($pattern, file_get_contents($file), $matches);
print_r($matches);
?>

第一个匹配应该是服务器名称:$matches[0]