RdbAdmin Module

php-string.php

PHP string polyfill helpers.

Tags
license

http://opensource.org/licenses/MIT MIT

since
1.1.7

Table of Contents

Functions

str_contains()  : bool
Performs a case-sensitive check indicating if needle is contained in haystack.

Functions

str_contains()

Performs a case-sensitive check indicating if needle is contained in haystack.

str_contains(string $haystack, string $needle) : bool
Parameters
$haystack : string

The string to search in.

$needle : string

The substring to search for in the haystack.

Tags
link

Original source code.

since
1.1.7
Return values
bool

Returns true if needle is in haystack, false otherwise.


        
On this page

Search results