stripos( $haystack, $needle )
- Source
wp-includes/class-pop3.php:663
Parameters
$haystack$needle
Used by · 39
- Autoload::load()Autoloader.
- PHPMailer::DKIM_Add()Create the DKIM header and body in a new message header.
- PHPMailer::createBody()
- PHPMailer::isQmail()
- PHPMailer::isSendmail()
- PHPMailer::preSend()Prepare a message for sending.
- POP3::is_ok()
- Parser::prepareHeaders()Prepare headers (take care of proxies headers)
- Requests::request()Main interface for HTTP requests
- SMTP::get_lines()Read the SMTP server's response.
- WP_Customize_Nav_Menus::search_available_items_query()Performs post queries for available-item searching.
- WP_Filesystem_Base::find_folder()Locates a folder on the remote filesystem.
Show all 39
- WP_Filesystem_FTPext::parselisting()
- WP_HTML_Tag_Processor::set_modifiable_text()Sets the modifiable text for the matched token, if matched.
- WP_Http_Cookie::test()Confirms that it's OK to send this cookie to the URL checked against.
- WP_Http_Encoding::should_decode()Whether the content be decoded based on the headers.
- WP_MS_Themes_List_Table::_search_callback()
- WP_Plugins_List_Table::_search_callback()
- WP_REST_Post_Format_Search_Handler::search_items()Searches the post formats for a given search request.
- WP_Themes_List_Table::search_theme()
- WP_Token_Map::contains()Indicates if a given word is a lookup key in the map.
- WP_Token_Map::read_token()If the text starting at a given offset is a lookup key in the map, return the corresponding transformation from the map, else `false`.
- WP_oEmbed::discover()Attempts to discover link tags at the given URL for an oEmbed provider.
- _WP_Editors::editor()Outputs the HTML for a single instance of the editor.
- add_query_arg()Retrieves a modified URL query string.
- esc_url()Checks and cleans a URL.
- is_login()Determines whether the current request is for the login screen.
- media_buttons()Adds the media button to the editor.
- ms_load_current_site_and_network()Identifies the network and site of a requested domain and path and populates the corresponding network and site global objects as part of the multisite bootstrap process.
- render_block_core_image()Renders the `core/image` block on the server, adding a data-id attribute to the element if core/gallery has added on pre-render.
- trackback_rdf()Generates and displays the RDF for the trackback information of current post.
- wp_add_inline_script()Adds extra code to a registered script.
- wp_add_inline_style()Adds extra CSS styles to a registered stylesheet.
- wp_ajax_wp_compression_test()Handles compression testing via AJAX.
- wp_mail()Sends an email, similar to PHP's mail function.
- wp_map_nav_menu_locations()Maps nav menu locations according to assignments in previously active theme.
- wp_map_sidebars_widgets()Compares a list of sidebars with their widgets against an allowed list.
- wp_opcache_invalidate()Attempts to clear the opcode cache for an individual PHP file.
- wp_targeted_link_rel()Adds `rel="noopener"` to all HTML A elements that have a target.
Source
function stripos($haystack, $needle){ return strpos($haystack, stristr( $haystack, $needle )); }History
Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
About this page
- Parsed data
- Generated from the wordpress-develop 6.8.8 tag, from
src/wp-includes/class-pop3.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it. - Corrections
- Something wrong on this page? Report it and it gets fixed in the next regeneration.