<?php
/* --------------------------------------------------------------
strpos_wrapper.inc.php 2014-02-07 gm
Gambio GmbH
http://www.gambio.de
Copyright (c) 2014 Gambio GmbH
Released under the GNU General Public License (Version 2)
[http://www.gnu.org/licenses/gpl-2.0.html]
--------------------------------------------------------------
*/
function strpos_wrapper($p_haystack, $p_needle, $p_offset = 0, $p_encoding = 'utf-8')
{
if(function_exists('mb_strpos'))
{
$t_strpos = mb_strpos($p_haystack, $p_needle, $p_offset, $p_encoding);
}
else
{
$t_strpos = strpos($p_haystack, $p_needle, $p_offset);
}
return $t_strpos;
}