Your IP : 216.73.216.250


Current Path : /home/digilove/public_html/libraries/smartslider3/src/Framework/Misc/StringPhp/
Upload File :
Current File : /home/digilove/public_html/libraries/smartslider3/src/Framework/Misc/StringPhp/MultiByte.php

<?php

namespace Nextend\Framework\Misc\StringPhp;

class MultiByte implements StringInterface {

    public function strpos($haystack, $needle, $offset = 0) {
        return mb_strpos($haystack, $needle, $offset);
    }

    public function substr($string, $start, $length = null) {
        return mb_substr($string, $start, $length);
    }

    public function strlen($string) {
        return mb_strlen($string);
    }
}