|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2007-07-18 09:10 UTC] jani@php.net
[2007-07-24 10:23 UTC] jen dot bell at gmail dot com
[2007-07-26 01:00 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Nov 18 18:00:01 2025 UTC |
Description: ------------ strpos($str, $needles, $offset); if $str haves ':', if $needles have ':', then $offset does not have mean. Reproduce code: --------------- $str = "::soon::::soon::::soon::"; for($i=0; $i<3; $i++) { echo(strpos($str, "::soon::", $i).' '); } Expected result: ---------------- Normal -------------------------------------- 0 8 16 result ---------------------------------------- 0 8 8