我有一段php代码,在页面加载请求时找到一个相应的文件,其中包含有关包含密码的页面信息。
文件中的语法如下:
Pagename:
PageInfo:
Password: SecretPassword
如何在密码后找到密码:?
我的PHP代码如下所示:
$filepath = absolute_url("page/info.php");
$infoFile = fopen("$filepath", "r");
$contents = stream_get_contents($infoFile);
答案 0 :(得分:0)
似乎有一种非常奇怪的方式来存储数据。假设这无法提供帮助,您可以通过以下方式进行RegEx:
$matches = array();
preg_match('/Password:\s(.*)$/', $contents, $matches);
// ^ Assuming there's only ever 1 space
echo $matches[1]
将打印SecretPassword