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 trial

PHP PHP Functions Introducing Functions PHP Function Arguments

janrey Busque
janrey Busque
1,249 Points

What's the difference between ' ' and " "?

I'm confused by these two

1 Answer

Double quotes can use variables within them. Single quotes are best if you aren't going to be using variables or plan to concatenate, since the server doesn't have to check for variables inside the script.

For example

<?php 
$job = 'web developer';
$message = "I am a $job";
echo $message; // Outputs: I am a web developer

$job = 'web developer';
$message = 'I am a $job';
echo $message; // Outputs: I am a $job