Perl scripters,
Did you ever want to just grab the current year in four digit format without pulling in the entire localtime array? Me too. Here is a simple statement that does just that and nothing more. It pulls in the sixth element of the array which is the year. Don't forget, the array begins with index value 0 so the sixth element has an index value of 5.
$currentyear = (localtime)[5] + 1900;
Enjoy.
Some Magic Mushroom Edibles Have Zero Psilocybin—Just Junk That Still Gets
You High
-
[image: Hallucinogenic,mushrooms,on,black,background,,color,toned]
A review of 12 magic mushroom edibles found that they contained no trace of
psilocybin, ...
3 hours ago
1 comment:
Exactly what I was looking for. Thanks!
Post a Comment