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 trialElena Paraschiv
9,938 PointsWhat if $name=Null ?
The code in the video is
<?php
function get_info($name, $title = Null){
if($title){
echo "$name has arrived. They are with us as a $title.";
} else {
echo "$name has arrived. They have no title.";
}
}
get_info("Mike");
?>
What if instead we want the name to be null?
<?php
function get_info($name= Null, $title ){
if($name){
echo "$name has arrived. They are with us as a $title.";
} else {
echo "$name has arrived. They have no title.";
}
}
get_info("Mike");
?>
What would we write in the parathesis? get_info();
1 Answer
Dan Johnson
9,385 PointsIf you have a list of parameters like in your example you need to supply them left-to-right to preserve the order.
get_info(null, "Mike");
Is how you'd skip the first parameter and send in the second.