StringInterface.php 245 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 <?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); }