PATH:
home
/
lab2454c
/
incforce.com
/
wp-content
/
plugins
/
smart-slider-3
/
Nextend
/
Framework
/
Misc
/
StringPhp
<?php namespace Nextend\Framework\Misc\StringPhp; class SingleByte implements StringInterface { public function strpos($haystack, $needle, $offset = 0) { return strpos($haystack, $needle, $offset); } public function substr($string, $start, $length = null) { return substr($string, $start, $length); } public function strlen($string) { return strlen($string); } }
[+]
..
[-] StringInterface.php
[edit]
[-] MultiByte.php
[edit]
[-] SingleByte.php
[edit]