Search Results

1
vote
2answers
159 views

Adjusting time zone in PHP with DateTime / DateTimeZone

There's a lot of info on doing time zone adjustments in PHP, but I haven't found an answer for specifically what I want to do due to all the noise. Given a time in one timezone, I want to c …
2
votes

Using parent variables in extending class

Take a step back and look at the relationships between your classes. In your database, a Project "has a" Member(or 'user' in the DB). Your class implementations do not reflect this relatio …
0
votes

PHP Calling a function within a Class method?

The sample you provided is not valid PHP and has a few issues: public scoreTest() { ... } is not a proper function declaration -- you need to declare functions …