pastebin
| #1 paste tool since 2002
create new paste
tools
api
archive
real-time
faq
pastebin
Follow @pastebin
create new paste
trending pastes
sign up
login
my settings
my profile
My Pastes
Public Pastes
Untitled
4 sec ago
Untitled
5 sec ago
Untitled
5 sec ago
Untitled
10 sec ago
Untitled
11 sec ago
Untitled
13 sec ago
Untitled
14 sec ago
Untitled
17 sec ago
Layout Width
Share Pastebin
Untitled
By: a guest | Mar 18th, 2010 | Syntax:
None
| Size: 0.19 KB | Hits: 65 | Expires: Never
Download
|
Raw
|
Embed
|
Report abuse
<?php
function gettok($source,$pos,$base)
{
$i = 1;
$base = chr($base);
$output = strtok($source, $base);
while($i<$pos) { $output = strtok($base); $i++; }
return $output;
}
?>
create new paste
|
create new version of this paste
RAW Paste Data
<?php function gettok($source,$pos,$base) { $i = 1; $base = chr($base); $output = strtok($source, $base); while($i<$pos) { $output = strtok($base); $i++; } return $output; } ?>