這我拋出一個循環:在什麼是strpos和or stripos的正確使用方法? (這是一個錯誤嗎?)
$s = "ERROR: 5 - [RecordN...blah blah blah";
print stripos($s, 'error') . "\n";
print strpos($s, "ERROR") . "\n";
print $s . "\n";
結果:
0
0
ERROR: 5 - [RecordN...blah blah blah
咦?好吧,我會從here嘗試一些:
$mystring = 'abc';
$findme = 'a';
$pos = strpos($mystring, $findme);
print $pos . "\n";
結果是:
0
什麼?
我運行:
php --version
PHP 5.3.6-13ubuntu3.6 with Suhosin-Patch (cli) (built: Feb 11 2012 03:26:01)
Copyright (c) 1997-2011 The PHP Group
Zend Engine v2.3.0, Copyright (c) 1998-2011 Zend Technologies
我是不是在看一個錯誤?
在此先感謝。
編輯:
顯然在那裏失去了我的感官。感謝所有的答覆。