Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialMichael Collins
8,925 PointsBuilt-in Functions
Hi Hampton:
I am reviewing your PHP videos, which are great btw, and in the Strings & Booleans video you mentioned the built-in isset() function.
Where can I go to learn about the most commonly used built-in functions in PHP?
Thanks in advance!
2 Answers
thomascawthorn
22,986 PointsHmm, I found the most commonly used functions via tutorials and then looking at other peoples code, but also through problem solving. For instance if you're working with DOB's and need to know work out how old someone is, you'll be learning around php's date functions and pick up more hints and tips. You can also browse the php docs on the off chance you'll find something useful :)
Michael Collins
8,925 PointsThanks Tom.
After doing the PHP basics course I went on to the PHP Functions course and the last section provided additional info. That section references the docs quite a bit but focuses on String and Arrays.
The link is below for anyone else who is interested:
https://teamtreehouse.com/library/php-functions-2/php-internal-functions/php-functions-next-steps
Thanks again Tom!