View Review Details
| Book: | Programming PHP | |
| Subject: | Re: A comment about the style | |
| Date: | 2008-11-17 19:35:41 | |
| From: | cambridge | |
|
Response to: A comment about the style
|
||
|
its simple only create a typical php file and then you see that the code sample is a simple code: < ? function update_counter () { static $counter = 0; $counter++; echo "Static counter is now $counter\n"; } $counter = 10; update_counter(); update_counter(); echo "Global counter is $counter\n"; ? >
|
||





