A Path tokenizer takes a path and returns the components that make up that path.
The path can use path separators of either ':' or ';' and file separators of either '/' or '\'.
author |
Hans Lellelid hans@xmpl.org (Phing) |
---|---|
author |
Conor MacNeill (Ant) |
author |
Jeff Tulley jtulley@novell.com (Ant) |
package |
phing.util |
__construct(string $path)
string
The path to tokenize. Must not be null
.
contains(string $path) : boolean
We can do this easily because in PHP implimentation we're using arrays.
string
path to search for.
boolean
hasMoreTokens() : boolean
boolean
true
if and only if there is at least one token
in the string after the current position; <code>false</code> otherwise.
nextToken() : string
throws |
if there are no more elements in this tokenizer's path. |
---|---|
string
the next path element from this tokenizer.
tokens :
lookahead : string
var |
---|
string
dosStyleFilesystem : boolean
var |
---|
boolean