これは私にループを投げさせました:
$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
は?よし、ここから何かやってみよう:
$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
私はバグを見ていますか?
前もって感謝します。
編集:
明らかにそこで私の感覚を失いました。すべての回答をありがとう。