What are the best practices for usage of PHP’s Magic Constants, such as __LINE__ , __FILE__, __FUNCTION__, __CLASS__ and __METHOD__?

For example I use __LINE__ and __CLASS__ to locate the SQL Error like this :

$result = mysql_query($query)
or die("Error SQL line ".__LINE__ ." class ".__CLASS__." : ".mysql_error());

Is this an acceptable practice?

link|improve this question

How can we help you? – jasonbar Nov 26 '10 at 16:26
7  
Not sure what you mean by "best usage"? The best usage is using them when they're needed, aren't they? :) – Pekka Nov 26 '10 at 16:26
@Brad: thx for the edit – Amirouche Douda Nov 26 '10 at 16:31
@Amirouche Douda, happy to help. :-D – Brad Nov 26 '10 at 16:34
@jasonbar & Pekka: Question edited – Amirouche Douda Nov 26 '10 at 16:37
show 1 more comment
feedback

3 Answers

up vote 2 down vote accepted

The practice you show has two shortcomings:

  • You are not showing the file the error occurs in - you'd have to have a very strict file structure that maps classes to files 1:1 for this to be useful

  • __CLASS__ will show you the wrong result if the error occurs in an inherited class. Use get_class($this) to get the actual current class.

Other than that, using these constants is perfectly acceptable. Note that

  • __FUNCTION__ and __CLASS__ were added in PHP 4.3

  • __DIR__ and __METHOD__ are available since PHP 5.0.0

  • __NAMESPACE__ is available since PHP 5.3.

docs

link|improve this answer
Correction: __DIR__ was added in PHP 5.3 not 5.0. – SalmanPK Apr 3 at 21:47
feedback

The purpose for these constants is debugging and logging. This is exactly what you are doing.

__FILE__ can also be used for relative file paths (e.g. dirname(__FILE__)).

link|improve this answer
Since PHP 5.3 there is __DIR__ magic constant which is equal to dirname(__FILE__). – Crozin Nov 27 '10 at 16:08
feedback

The only advice I can give is that not all magic constants are defined. So, when in doubt, use if(defined('__MAGIC_CONSTANT__'))

link|improve this answer
1  
Some magic constants are undefined if you're using less the PHP5 – stillstanding Nov 26 '10 at 16:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.