foreachBy neokrates, written on March 19, 2010 |
php snippet |
- neokrates
- Email: uwarov@yahoo.com
- Website: http://www.thinkplexx.com
- Join date: 05-31-09
- Posts: 20
Rate it
Ad
Poll
What are your favorite build tools?
- nant (100%, 9 Votes)
- ant (0%, 0 Votes)
- gant (0%, 0 Votes)
- make (0%, 0 Votes)
- nmake (0%, 0 Votes)
- rake (0%, 0 Votes)
Total Voters: 9
Loading ...
Most popular search terms:
$arr = array("one", "two", "three");
reset($arr);
while (list(, $value) = each($arr)) {
echo "Value: $value<br />\n";
}
foreach ($arr as $value) {
echo "Value: $value<br />\n";
}
|
TAGS
|
|
RELATED
|
Pages
Posts
|
|
SOCIAL
|


















