从文本文件中读取特定的数据

时间:2017-08-28 10:59:36

标签: javascript php html css3

我是php的新手。我正在尝试使用file_get_content( text.txt, NULL,NULL, 200, 4)从笑话文件中提取特定值,但它返回第200个字符后面的值。请有更好的方法来做到这一点。喜欢而不是指定可能变化的位置我指定一个单词而不是

1 个答案:

答案 0 :(得分:0)

也许这个解决方案可能就是你想要的?

<?php
$mystring = 'abc';
$findme   = 'a';
$pos = strpos($mystring, $findme);

if ($pos === false) {
    echo "Not found";
} else {
    echo "The string '$findme' was found in the string '$mystring'";
    echo " and exists at position $pos";
}
?>