Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php /** * Find the position of the last occurrence of a case-insensitive substring in ..
Decoded Output download
<?php
/**
* Find the position of the last occurrence of a case-insensitive substring in a string
*
* @phpstub
*
* @param string $haystack
* @param string $needle
* @param int $offset
*
* @return int Returns the position where the needle exists relative to the beginnning of
* the string (independent of search direction
* or offset).
* Also note that string positions start at 0, and not 1.
*/
function strripos($haystack, $needle, $offset = false)
{
} ?>
Did this file decode correctly?
Original Code
<?php
/**
* Find the position of the last occurrence of a case-insensitive substring in a string
*
* @phpstub
*
* @param string $haystack
* @param string $needle
* @param int $offset
*
* @return int Returns the position where the needle exists relative to the beginnning of
* the string (independent of search direction
* or offset).
* Also note that string positions start at 0, and not 1.
*/
function strripos($haystack, $needle, $offset = false)
{
}
Function Calls
None |
Stats
MD5 | 52d08d00f673e15897ee31113834c30b |
Eval Count | 0 |
Decode Time | 84 ms |