I am looking for something in PHP so that I can trigger an event at 3:30AM every day, is there something built into php to do this, how does someone trigger an event of this type?
You need to schedule this externally to PHP. While something like this could be programmed in PHP it's easier to just use something like 'cron' to handle the scheduling.
There's nothing built in for this. You usually schedule a cron event for it.