$timezone = 'America/Los_Angeles'; date_default_timezone_set($timezone); ?>
Are you worried about the apple SSL issues?
Here is how you can check you're machine to find all the apps that are affected by this issue.
Code:
for i in `find / -name "*.app"` do otool -L $i/Contents/MacOS/* 2>1 | grep 55471 > /dev/null 2>&1 if [ $? -eq 0 ] then printf "$i\n\t\tis using /System/Library/Frameworks/Security.framework/Versions/A/Security (compatibility version 1.0.0, current version 55471.0.0)\n" fi done