Is it Yii or Php syntax

Dear all,

I have came across the following code where there is a triple less then sigh, What does it stand for? Thanks


$js = <<< JS

           $('#quote-of-the-day').click(function(){

             $.ajax({

                url: '?r=getquote',

                success: function(data) {

                    $("#quote-of-the-day").html(data)

                }

        })

    });

JS;



http://www.yiiframework.com/forum/index.php/topic/54820-yii2-ajax-howto/

It’s heredoc syntax. It’s just another way to quote a string.

http://php.net/manual/pl/language.types.string.php#language.types.string.syntax.nowdoc

Dear all,

Thanks.