Difference between revisions of "PHP"

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
Jump to navigation Jump to search
(→‎Links: notes: lack of "use strict")
(47 intermediate revisions by 16 users not shown)
Line 1: Line 1:
[[Computing]]: [[Software]]: [[PHP]]{{seed}}
+
<hide>
[[PHP]] is an interpreted language most commonly used in web sites.
+
[[page type::article]]
==Reference==
+
[[thing type::computer language]]
* [http://php.net/ Official PHP Website]
+
[[language type::interpreted]]
* {{wikipedia|PHP}}
+
</hide>
* [http://wiki.cc/php/Main_Page PHP Wiki]
+
==About==
 +
[[PHP]] is an interpreted programming language most commonly used in web sites. It is the language in which the [[MediaWiki]], [[WordPress]], [[Drupal]], and [[ZenCart]] web software packages, among many others, are written.
 +
 
 +
Note that much of the information on this page is somewhat outdated; PHP continues to be actively developed and improved.
 +
===subpages===
 +
* [[/arrays]]
 +
* [[/CLI]]: using PHP from a [[command line interface]]
 +
* [[/criticism]]: why PHP is bad
 +
* [[/debugging/interactive]]
 +
* [[/frameworks]]
 +
* [[/interface]] keyword
 +
* [[/trait]] keyword/concept
 +
* [[/type declaration]]
  
 
==Related Articles==
 
==Related Articles==
* [[Perl vs. PHP]]
+
* [[Apache and PHP]]: getting the two of them to work together nicely
 +
* [[Perl vs. PHP]]: comparisons between the two languages
 +
* [[PHP-GTK]]
 
* [[register_globals]]
 
* [[register_globals]]
==Related Things==
+
 
===Coding Resources===
+
==Links==
* [[wikipedia:PHP Extension and Application Repository|PHP Extension and Application Repository]] (PEAR)
+
===Reference===
** [http://pear.php.net/ official web site]
+
* [http://php.net/ Official]
===Users Groups===
+
** [http://php.net/manual/ Manual]
 +
*** [http://php.net/manual/en/langref.php Language Reference]
 +
**** [http://php.net/manual/en/language.constants.predefined.php Magic constants]
 +
**** parameter types: [http://php.net/manual/en/functions.arguments.php Function arguments] (aka type hinting)
 +
* {{wikipedia}}
 +
* [http://wiki.cc/php/Main_Page PHP Wiki]
 +
===Projects===
 +
* [https://www.phptherightway.com/ PHP The Right Way]: good practices and patterns
 +
* [http://www.hardened-php.net/ Hardened PHP]: patches to improve PHP security
 +
* [https://3v4l.org/ 3v4l.org] "is an online shell that allows you to run your code on my server. I compiled more than 200 different PHP versions (every version released since 4.3.0) plus HHVM for you to use."
 +
====Development Tools====
 +
* [http://phpundercontrol.org/ phpUnderControl] - "Continuous Integration for PHP"
 +
====Users Groups====
 
* [http://www.tripug.org/ Triangle PHP Users Group]: [[The Triangle, NC]]
 
* [http://www.tripug.org/ Triangle PHP Users Group]: [[The Triangle, NC]]
 +
====Coding Resources====
 +
* [[PEAR]] (PHP Extension and Application Repository):
 +
** [http://pear.php.net/ Official]
 +
** {{wikipedia|PEAR}}
 +
 +
==Newbie Traps & Pitfalls==
 +
PHP will let you get away with a lot of syntax mistakes which are perfectly valid code (often creating unexpected variables in the process) but not what you intended. Most of the following produced no immediate error messages; the code simply wouldn't work, and it took me several edit-upload-run cycles to find each problem. Here are some mistakes I made when re-learning PHP in 2005 after not using it since 1997:
 +
* '''Classes''':
 +
** Member vars and functions must ''always'' be referred to using '''$this->''FunctionName''()'''
 +
** However, var members do not take a $ prefix: '''$this->''varName'''''
 +
** If you pass an object to a function, the function will be operating on a ''copy'' of the object unless the function is called with the object passed as a reference: '''''CalledFunction''(&$''objName'');'''. The function declaration itself needs no modifications.
 +
** If the function is expected to store the object for later use (e.g. it is a class constructor), the function must also use a reference when saving the object: '''$this->''localName'' =& $''iObjectParam'';'''. Otherwise (again) it will be using a copy, not the original.
 +
** In a child function ('''class''' <u>child</u> '''extends''' <u>parent</u>), if the parent has member variables declared as "private" and you attempt to access them with $this->varname, PHP will silently create ''new'' member variables for the child scope rather than referencing the old ones or generating an error. (Change the var declarations to "protected".)
 +
* '''Operators''':
 +
** The "is equal to" comparison operator is "==" (as in c/c++), not "="
  
==Links==
 
* '''2006-07-22''' [http://blog.case.edu/gps10/2006/07/22/why_global_variables_in_php_is_bad_programming_practice Why Global Variables in PHP is Bad Programming Practice]
 
* [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
 
 
==Notes==
 
==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).
 
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).
 +
===Error Messages===
 +
''some of these are not found in the PHP documentation''
 +
* '''REG_EMPTY''': [[regex]]-related, but not sure what it means; it may reflect a difference between Perl-style regex (preg_* functions) and grep-style regex (ereg* functions). I changed the expression "('|")" to "['"]", and this seemed to solve the problem.
 +
* '''REG_ERANGE''': This error appears to originate in the [[regex]] library, and means "Invalid character range, e.g. ending point is earlier in the collating order than the starting point." (Documented [http://www.laurikari.net/tre/api.html here])
 +
** In one case, this was caused by having a forward-slash ("/") in the bracketed list of possible characters; escaping the forward slash fixed the problem.

Revision as of 15:09, 30 January 2020

About

PHP is an interpreted programming language most commonly used in web sites. It is the language in which the MediaWiki, WordPress, Drupal, and ZenCart web software packages, among many others, are written.

Note that much of the information on this page is somewhat outdated; PHP continues to be actively developed and improved.

subpages

Related Articles

Links

Reference

Projects

  • PHP The Right Way: good practices and patterns
  • Hardened PHP: patches to improve PHP security
  • 3v4l.org "is an online shell that allows you to run your code on my server. I compiled more than 200 different PHP versions (every version released since 4.3.0) plus HHVM for you to use."

Development Tools

Users Groups

Coding Resources

Newbie Traps & Pitfalls

PHP will let you get away with a lot of syntax mistakes which are perfectly valid code (often creating unexpected variables in the process) but not what you intended. Most of the following produced no immediate error messages; the code simply wouldn't work, and it took me several edit-upload-run cycles to find each problem. Here are some mistakes I made when re-learning PHP in 2005 after not using it since 1997:

  • Classes:
    • Member vars and functions must always be referred to using $this->FunctionName()
    • However, var members do not take a $ prefix: $this->varName
    • If you pass an object to a function, the function will be operating on a copy of the object unless the function is called with the object passed as a reference: CalledFunction(&$objName);. The function declaration itself needs no modifications.
    • If the function is expected to store the object for later use (e.g. it is a class constructor), the function must also use a reference when saving the object: $this->localName =& $iObjectParam;. Otherwise (again) it will be using a copy, not the original.
    • In a child function (class child extends parent), if the parent has member variables declared as "private" and you attempt to access them with $this->varname, PHP will silently create new member variables for the child scope rather than referencing the old ones or generating an error. (Change the var declarations to "protected".)
  • Operators:
    • The "is equal to" comparison operator is "==" (as in c/c++), not "="

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).

Error Messages

some of these are not found in the PHP documentation

  • REG_EMPTY: regex-related, but not sure what it means; it may reflect a difference between Perl-style regex (preg_* functions) and grep-style regex (ereg* functions). I changed the expression "('|")" to "['"]", and this seemed to solve the problem.
  • REG_ERANGE: This error appears to originate in the regex library, and means "Invalid character range, e.g. ending point is earlier in the collating order than the starting point." (Documented here)
    • In one case, this was caused by having a forward-slash ("/") in the bracketed list of possible characters; escaping the forward slash fixed the problem.