Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
212 views

Best practices for usage of PHP’s Magic Constants

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 ...
4
votes
2answers
197 views

Python equivalent of PHP's __DIR__ magic constant?

In PHP, the __DIR__ magic constant evaluates to the path to the directory containing the file in which that constant appears. Is there an equivalent feature in Python?
1
vote
2answers
202 views

PHP get line number from logging event

Ok I have another question HERE for my Logging Class but I wanted to be able to add the line number of the calling script to the log file entry. I have seen _Line_ but this gives me the line number ...