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 first occurrence of a case-insensitive substring in..

Decoded Output download

<?php

/**
 * Find the position of the first occurrence of a case-insensitive substring in a string
 *
 * @phpstub
 *
 * @param string $haystack
 * @param string $needle
 * @param int $offset
 *
 * @return int Returns the position of where the needle exists relative to the beginnning of
 *             the  string (independent of offset).
 *             Also note that string positions start at 0, and not 1.
 */
function stripos($haystack, $needle, $offset = false)
{
} ?>

Did this file decode correctly?

Original Code

<?php

/**
 * Find the position of the first occurrence of a case-insensitive substring in a string
 *
 * @phpstub
 *
 * @param string $haystack
 * @param string $needle
 * @param int $offset
 *
 * @return int Returns the position of where the needle exists relative to the beginnning of
 *             the  string (independent of offset).
 *             Also note that string positions start at 0, and not 1.
 */
function stripos($haystack, $needle, $offset = false)
{
}

Function Calls

None

Variables

None

Stats

MD5 aff1f2e3a965c003f0ddfc9d4805f01f
Eval Count 0
Decode Time 99 ms