Function __global->strrchr

Definitions

sources_custom/phpstub.php

  • Find the last occurrence of a character in a string.
  • Is abstract?: No
  • Is static?: No
  • Is final?: No
  • Return: string

Parameters

Name Type Default Set Range Description
$haystack string required parameter N/A N/A Haystack
$needle string required parameter N/A N/A Needle (string of length 1)

Return

  • The portion of haystack which starts at the last occurrence of needle and goes until the end of haystack
  • Type: string
  • Set: N/A
  • Range: N/A