Share Pastebin
Guest
Public paste!

Untitled

By: a guest | Mar 18th, 2010 | Syntax: None | Size: 0.19 KB | Hits: 65 | Expires: Never
Copy text to clipboard
  1. <?php
  2. function gettok($source,$pos,$base)
  3.         {
  4.                 $i = 1;
  5.                 $base = chr($base);
  6.                 $output = strtok($source, $base);
  7.                 while($i<$pos) {        $output = strtok($base); $i++; }                       
  8.                 return $output;
  9.         }
  10. ?>