标签: php
我有一个config.txt文件,用于将凭据存储到服务器。我需要阅读特定点
从上面的图片中我需要读取仅在两个:: position
答案 0 :(得分:4)
只需使用正则表达式:
<?php $pattern = '/server_name::(.*)$/'; $file = '/Your/file/path/here'; preg_match($pattern, file_get_contents($file), $matches); print_r($matches); ?>
第一个匹配应该是服务器名称:$matches[0]
$matches[0]