php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Doc Bug #78417 Description of strpos
Submitted: 2019-08-15 14:16 UTC Modified: 2021-02-23 12:52 UTC
From: vlada at skrbek dot cz Assigned: cmb (profile)
Status: Closed Package: Documentation problem
PHP Version: Irrelevant OS:
Private report: No CVE-ID: None
 [2019-08-15 14:16 UTC] vlada at skrbek dot cz
Description:
------------
---
From manual page: https://php.net/function.strpos
---

Hello

It is just a mine oppinion but I think to the description of strpos should be added the return value BOOLEAN not only INT because the return value is either INT if the string is found or BOOLEAN if the string is not find.

I like these documentations.

Also note. When I search comparator == or === it is not found. Could you fix it?

Best Regards

Test script:
---------------
It is just a mine oppinion but I think to the description of strpos should be added the return value BOOLEAN not only INT because the return value is either INT if the string is found or BOOLEAN if the string is not find.

Now it looks like:
strpos ( string $haystack , mixed $needle [, int $offset = 0 ] ) : int

I think it should be something like:
strpos ( string $haystack , mixed $needle [, int $offset = 0 ] ) : {int|boolena}



Expected result:
----------------
strpos ( string $haystack , mixed $needle [, int $offset = 0 ] ) : {int|boolena}

Actual result:
--------------
strpos ( string $haystack , mixed $needle [, int $offset = 0 ] ) : int

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2021-02-23 12:52 UTC] cmb@php.net
-Status: Open +Status: Closed -Assigned To: +Assigned To: cmb
 [2021-02-23 12:52 UTC] cmb@php.net
This has been fixed in the meantime.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Nov 01 01:01:28 2024 UTC