PHP: Difference between revisions
from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
→Related Things: tripug |
→Links: notes: lack of "use strict" |
||
| Line 20: | Line 20: | ||
* [http://www.ukuug.org/events/linux2002/papers/html/php/ Experiences of Using PHP in Large Websites] | * [http://www.ukuug.org/events/linux2002/papers/html/php/ Experiences of Using PHP in Large Websites] | ||
* [http://dagbrown.livejournal.com/19338.html un-PHP-ing my web site]: a LiveJournal entry critical of PHP | * [http://dagbrown.livejournal.com/19338.html un-PHP-ing my web site]: a LiveJournal entry critical of PHP | ||
==Notes== | |||
One of the major weaknesses of PHP as a serious programming language is its lack of any way to require variable declaration before usage -- the equivalent of "use strict;" in [[Perl]] or "Option Explicit" in [[Visual Basic]]. [http://www.wellho.net/forum/Writing-PHP/use-strict.html Here] is a brief discussion of this problem, with a workaround which might be useful in some situations (but not if you need to turn off warnings for other reasons, such as needing to suppress messages about duplicate http headers). | |||
Revision as of 01:22, 6 April 2007
Computing: Software: PHP<hide>
page status::seed
</hide>
|
This page is a seed article. You can help HTYP water it: make a request to expand a given page and/or donate to help give us more writing-hours!
|
PHP is an interpreted language most commonly used in web sites.
Reference
Related Articles
Related Things
Coding Resources
Users Groups
Links
- 2006-07-22 Why Global Variables in PHP is Bad Programming Practice
- Experiences of Using PHP in Large Websites
- un-PHP-ing my web site: a LiveJournal entry critical of PHP
Notes
One of the major weaknesses of PHP as a serious programming language is its lack of any way to require variable declaration before usage -- the equivalent of "use strict;" in Perl or "Option Explicit" in Visual Basic. Here is a brief discussion of this problem, with a workaround which might be useful in some situations (but not if you need to turn off warnings for other reasons, such as needing to suppress messages about duplicate http headers).
