????

Your IP : 52.14.160.14


Current Path : /proc/self/cwd/wp-content/plugins/smart-slider-3/Nextend/Framework/Misc/StringPhp/
Upload File :
Current File : //proc/self/cwd/wp-content/plugins/smart-slider-3/Nextend/Framework/Misc/StringPhp/SingleByte.php

<?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);
    }
}