proxy.php

Simple redirection proxy
git clone git://git.finwo.net/misc/proxy.php
Log | Files | Refs | README

startsWith.php (134B)


      1 <?php
      2 
      3 function startsWith($haystack, $needle) {
      4     return !strlen($needle) || (substr($haystack, 0, strlen($needle)) == $needle);
      5 }