*/ protected $targetFunctions = [ 'mb_strrpos' => true, ]; /** * Tokens which should be recognized as numbers. * * @since 9.3.0 * * @var array */ private $numberTokens = [ \T_LNUMBER => \T_LNUMBER, \T_DNUMBER => \T_DNUMBER, \T_MINUS => \T_MINUS, \T_PLUS => \T_PLUS, ]; /** * Do a version check to determine if this sniff needs to run at all. * * @since 9.3.0 * * @return bool */ protected function bowOutEarly() { return ScannedCode::shouldRunOnOrAbove('5.2') === false; } /** * Process the parameters of a matched function. * * @since 9.3.0 * * @param \PHP_CodeSniffer\Files\File $phpcsFile The file being scanned. * @param int $stackPtr The position of the current token in the stack. * @param string $functionName The token content (function name) which was matched. * @param array $parameters Array with information about the parameters. * * @return int|void Integer stack pointer to skip forward or void to continue * normal file processing. */ public function processParameters(File $phpcsFile, $stackPtr, $functionName, $parameters) { $encodingParam = PassedParameters::getParameterFromStack($parameters, 4, 'encoding'); if ($encodingParam !== false) { // Encoding set as fourth parameter. return; } $targetParam = PassedParameters::getParameterFromStack($parameters, 3, 'offset'); if ($targetParam === false) { // Optional third parameter not set. return; } $targets = $this->numberTokens + Tokens::$emptyTokens; $nonNumber = $phpcsFile->findNext($targets, $targetParam['start'], ($targetParam['end'] + 1), true); if ($nonNumber === false) { return; } if (TokenGroup::isNumericCalculation($phpcsFile, $targetParam['start'], $targetParam['end']) === true) { return; } $hasString = $phpcsFile->findNext(BCTokens::textStringTokens(), $targetParam['start'], ($targetParam['end'] + 1)); if ($hasString === false) { // No text strings found. Undetermined. return; } $error = 'Passing the encoding to mb_strrpos() as third parameter is soft deprecated since PHP 5.2'; $isError = false; $code = 'Deprecated'; if (ScannedCode::shouldRunOnOrAbove('8.0') === true) { $error .= ', hard deprecated since PHP 7.4 and removed since PHP 8.0'; $isError = true; $code = 'Removed'; } elseif (ScannedCode::shouldRunOnOrAbove('7.4') === true) { $error .= ' and hard deprecated since PHP 7.4'; } $error .= '. Use an explicit 0 as the offset in the third parameter.'; MessageHelper::addMessage($phpcsFile, $error, $targetParam['start'], $isError, $code); } }