%PDF- %GIF98; %PNG; .
Cyber Programmer
Logo of a company Server : Apache
System : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64
User : addictionfreeind ( 1003)
PHP Version : 7.2.34
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/addictionfreeind/public_html/vendor/nikic/php-parser/test/code/parser/scalar/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/addictionfreeind/public_html/vendor/nikic/php-parser/test/code/parser/scalar/docString.test
Nowdoc and heredoc strings
-----
<?php

// empty strings
<<<'EOS'
EOS;
<<<EOS
EOS;

// constant encapsed strings
<<<'EOS'
Test '" $a \n
EOS;
<<<EOS
Test '" \$a \n
EOS;

// encapsed strings
<<<EOS
Test $a
EOS;
<<<EOS
Test $a and $b->c test
EOS;

b<<<EOS
Binary
EOS;

-----
array(
    0: Scalar_String(
        value:
        comments: array(
            0: // empty strings
        )
    )
    1: Scalar_String(
        value:
    )
    2: Scalar_String(
        value: Test '" $a \n
        comments: array(
            0: // constant encapsed strings
        )
    )
    3: Scalar_String(
        value: Test '" $a

    )
    4: Scalar_Encapsed(
        parts: array(
            0: Scalar_EncapsedStringPart(
                value: Test
            )
            1: Expr_Variable(
                name: a
            )
        )
        comments: array(
            0: // encapsed strings
        )
    )
    5: Scalar_Encapsed(
        parts: array(
            0: Scalar_EncapsedStringPart(
                value: Test
            )
            1: Expr_Variable(
                name: a
            )
            2: Scalar_EncapsedStringPart(
                value:  and
            )
            3: Expr_PropertyFetch(
                var: Expr_Variable(
                    name: b
                )
                name: c
            )
            4: Scalar_EncapsedStringPart(
                value:  test
            )
        )
    )
    6: Scalar_String(
        value: Binary
    )
)

VaKeR 2022