如果我有一个名为 text.txt 的文本文件,在第 2 列第 6 行的文本文件中有一个词“帮助”,我如何阅读该词并用 php/html 打印出来?
问问题
1105 次
2 回答
2
使用 HTML 是不可能的。您需要使用 PHP 或其他语言。
使用 PHP
<?php
$arr = file ("text.txt");
substr($arr[5],2,4);
?>
或者如果你想找到确切的词。
<?php
$arr = file ("text.txt");
preg_match('/help/', $arr[5], $matches);
print_r($matches);
?>
http://php.net/manual/en/function.substr.php
于 2013-04-18T13:48:58.710 回答
0
需要在这里使用 php:http: //www.html.net/tutorials/php/lesson15.php 只需在您的 html 页面中插入 php 代码。使用数组和字符串操作来做你需要的。
于 2013-04-18T13:49:14.953 回答