(string) -   . 
     . 
 php     . 
        ,    .

string       .

      .

<?php
$q=" ";
print $q;
exit;
?>

    ,          , 
            , 
          .

     :

<?php
$q='Hello world!';
print $q;
exit;
?>

  :

<?php
$q="world!";
$w="Hello $q";
print $w;
exit;
?>

          , 
   -          , 
     ,   :

<?php
$q='$w -  ';
$w=$q;
print $q;
exit;
?>

  : $w -  '

   ,        .