我正在开发一个wordpress的网站我想在标题中放入一个txt文件以便在加载时读取
<?php
$myfile = fopen("keyword.txt", "r") or die("Unable to open file!");
// Output one character until end-of-file
while(!feof($myfile)) {
echo fgetc($myfile);
}
fclose($myfile);
?>
它没有给出目录文件,请帮我解决n wordpress
的问题答案 0 :(得分:0)
假设您的模板目录中有keyword.txt
。
$myfile = fopen( dirname(__FILE__) . "/keyword.txt", "r") or die("Unable to open file!");