b0y-101 Mini Shell


Current Path : E:/wordpress/wp-content/plugins/smart-slider-3/Nextend/Framework/Misc/StringPhp/
File Upload :
Current File : E:/wordpress/wp-content/plugins/smart-slider-3/Nextend/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);
    }
}

Copyright © 2019 by b0y-101