|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2021-11-19 16:38 UTC] requinix@php.net
-Status: Open
+Status: Not a bug
-Package: *Regular Expressions
+Package: Strings related
[2021-11-19 16:38 UTC] requinix@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 09 01:00:01 2025 UTC |
Description: ------------ $full_string = "HELLOW WORD"; $search_string = "HELLOW"; if (strpos($full_string,$search_string)){ //This return false echo "True"; }else{ echo "False"; } Expected result: ---------------- True Actual result: -------------- False