What is the '<<<' operator in laravel?

WBOY
Release: 2016-09-05 08:59:56
Original
1214 people have browsed it

I checked PHP, it’s a bit similar to bitwise operators, but judging from the example code, it should return HTML nodes.
For example:

<code>$form = <<<FORM
        <form action="form_test" method="POST">
            <input type="hidden" name="_token" value="{$csrf_token}">
            <input type="submit" value="Test"/>
        </form>
FORM;</code>
Copy after login
Copy after login

However, FORM can be replaced by GET, and strangely, the variable $csrf_token can be used in value, but the function csrf_token() cannot be used directly
I am a little confused.

Reply content:

I checked PHP, it’s a bit similar to bitwise operators, but judging from the example code, it should return HTML nodes.
For example:

<code>$form = <<<FORM
        <form action="form_test" method="POST">
            <input type="hidden" name="_token" value="{$csrf_token}">
            <input type="submit" value="Test"/>
        </form>
FORM;</code>
Copy after login
Copy after login

However, FORM can be replaced by GET, and strangely, the variable $csrf_token can be used in value, but the function csrf_token() cannot be used directly
I am a little confused.

This is the Heredoc structure of php, it has nothing to do with the framework

http://php.net/manual/zh/lang...

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!