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