Tagged Questions
The predefined-variables tag has no wiki summary.
5
votes
1answer
661 views
What did Perl's $* variable used to do?
I have some code from http://www.hyllander.org/node/23 that uses $* ("dollar asterisk" or "dollar star"), but my version of perl reports:
$* is no longer supported at migrate.pl line 284.
Do you ...
2
votes
3answers
76 views
PHP Predefined Interfaces & SPL - version check sufficient?
This is perhaps an obvious question, but I want to be sure.
I'm trying to work out in which version the "Predefined Interfaces" appeared in PHP. My assumption is 5.0.0, as this is when the SPL ...
1
vote
2answers
59 views
I thought one did not have to pre-define arrays in PHP
So, I created an array, by manually adding each entry:
$Sections[] = "A.1.4.1";//900 0 900 0 900 900 888 800 800 913 900 900 900
$Sections[] = "A.1.4.2.1";// 1000 1000 1000 1000 1000 1000 1000 1000 ...
0
votes
1answer
49 views
Eclipse IDE predefined variable for current class
I have a logger defined for every Java class:
private XLogger logger = XLoggerFactory
.getXLogger(AuthenticationFailureHandlerImpl.class.getName());
I want to add this to Eclipse snippets. ...
0
votes
1answer
84 views
PHP predefined variable storing Url
Even if they are quite different I'm going to compare to php predefined variables:
$_SERVER['HTTP_REFERRER']
$_SERVER['PHP_SELF']
the first is giving me the 'previous page' including the GET ...
0
votes
3answers
390 views
Pre declared dictionary size limit?
I have a big dictionary i constantly reference in my code so i have it initialized at the top:
import ...
myDictionary = {'a':'avalue','b':'bvalue',...}
code ...
But when i try to get values, ...
0
votes
3answers
780 views
__LP64__ on Windows?
I know Windows uses LLP instead of the LP data model, but is there a predefined variable or something? on OS X/Linux you can use __LP64__.