|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-02-23 13:26 UTC] tony2001@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Tue Feb 03 18:00:02 2026 UTC |
Description: ------------ strpos() returns false, if second argument is a number. Reproduce code: --------------- var_dump(strpos("1234",1234)); // -> returns false Expected result: ---------------- 0 Actual result: -------------- false