Languages

Fsharp
ActionScript
xBase
Clean
GPSS
PureBasic
Sieve
Erlang
JOVIAL
Mercury
Linda
DataFlex
PostScript
FoxPro2
VFP
Cobol
Prolog
Jython
Awk
VisualBasic
JavaScript
Matlab
ASP
Haskell
Csharp
D
Smalltalk
Nemerle
Pixilang
Java
SQL
Python
ObjectPascal
Ruby
Perl
Pascal
Assembler
PHP
C
Functions  Add function  Users  Registration  Enter   About  ASCII Table  Our helpers

strtok in PHP

(PHP 4, PHP 5)

strtok — Tokenize string
Description
string strtok ( string $str, string $token )

strtok() splits a string (str) into smaller strings (tokens), with each token being delimited by any character from token. That is, if you have a string like "This is an example string" you could tokenize this string into its individual words by using the space character as the token.

<?php
$string = "This is\tan example\nstring";
/* Use tab and newline as tokenizing characters as well */
$tok = strtok($string, " \n\t");

while ($tok !== false) {
echo "Word=$tok<br />";
$tok = strtok(" \n\t");
}
?>


Note that only the first call to strtok uses the string argument. Every subsequent call to strtok only needs the token to use, as it keeps track of where it is in the current string. To start over, or to tokenize a new string you simply call strtok with the string argument again to initialize it. Note that you may put multiple tokens in the token parameter. The string will be tokenized when any one of the characters in the argument are found.

The behavior when an empty part was found changed with PHP 4.1.0. The old behavior returned an empty string, while the new, correct, behavior simply skips the part of the string:


<?php
$first_token = strtok('/something', '/');
$second_token = strtok('/');
var_dump($first_token, $second_token);
?>

Output:

string(0) ""
string(9) "something"


<?php
$first_token = strtok('/something', '/');
$second_token = strtok('/');
var_dump($first_token, $second_token);
?>

Output:

string(9) "something"
bool(false)

Warning

This function may return Boolean FALSE, but may also return a non-Boolean value which evaluates to FALSE, such as 0 or "". Please read the section on Booleans for more information. Use the === operator for testing the return value of this function.
Doing for this function is string
Add by Pancho
You can edit it here
abcarticle.ru (blockart[dog]mail[dot]ru)
2lNPow <a href="http://pejxudtcjkvq.com/">pejxudtcjkvq</a>, [url=http://xcggbwqjique.com/]xcggbwqjique[/url], [link=http://xwbgsgdcfjuy.com/]xwbgsgdcfjuy[/link], http://iyestvyjrfix.com/
abcarticle.ru (blockart[dog]mail[dot]ru)
WDipu6 <a href="http://ifsyutlmegmb.com/">ifsyutlmegmb</a>, [url=http://qjjtbgfjebqu.com/]qjjtbgfjebqu[/url], [link=http://okrkmdlclgrf.com/]okrkmdlclgrf[/link], http://sjjmnqglmjoc.com/
Adding comments is available only for registered users.

Decontaminating Dangerous Drywall

Artist's interpretation of FAST-ACT absorbing and destroying toxins.

A nanomaterial originally developed to fight toxic waste is now helping reduce debilitating fumes in homes with corrosive drywall.

Developed by Kenneth Klabunde of Kansas State University, and improved over three decades with support from the National Science Foundation, the FAST-ACT material has been a tool of first responders since 2003.

Now, ...

More at http://www.nsf.gov/news/news_summ.jsp?cntn_id=117406&WT.mc_id=USNSF_51&WT.mc_ev=click


This is an NSF News item.

PycckaR
BepcuR


Articles
Articles


Library
Library


Downloads
Downloads

Google Chrome Golf 6
 © Internet, books, teachers and Rudevich Alexander brains.