File "StringInterface.php"

Full Path: /home2/sdektunc/cepali.edu.mx/wp-content/plugins/smart-slider-3/Nextend/Framework/Misc/StringPhp/StringInterface.php
File size: 245 bytes
MIME-type: text/x-php
Charset: utf-8

<?php


namespace Nextend\Framework\Misc\StringPhp;


interface StringInterface {

    public function strpos($haystack, $needle, $offset = 0);

    public function substr($string, $start, $length = null);

    public function strlen($string);
}