2012-11-25 13:10:58 +00:00
< ? php
namespace Foo ;
/**
* class Fail { }
*/
class StripNoise
{
2019-04-03 09:38:06 +00:00
public function test_heredoc ()
2012-11-25 13:10:58 +00:00
{
2019-04-03 09:38:06 +00:00
return <<< HEREDOC
class FailHeredocBasic
2012-11-25 13:10:58 +00:00
{
}
2019-04-03 09:38:06 +00:00
HEREDOC . <<< WHITESPACE
class FailHeredocWhitespace
2012-11-25 13:10:58 +00:00
{
}
2021-08-11 20:08:56 +00:00
WHITESPACE . <<< MARKERINTEXT
In PHP < 7.3 , the docblock marker could occur in the text as long as it did not occur at the very start of the line .
2021-10-02 12:39:39 +00:00
MARKERINTEXTwithtrail
MARKERINTEXT_
2021-08-22 11:49:03 +00:00
class FailHeredocMarkerInText
{
}
2021-08-11 20:08:56 +00:00
But , what are you blind McFly , it 's there. How else do you explain that wreck out there? Doc, Doc. Oh, no. You' re alive . Bullet proof vest , how did you know , I never got a chance to tell you . About all that talk about screwing up future events , the space time continuum . Okay , alright , I ' ll prove it to you .
2021-08-29 10:19:33 +00:00
. MARKERINTEXT
2021-08-22 11:49:03 +00:00
class FailHeredocMarkerInText2
{
}
2021-08-11 20:08:56 +00:00
Look at my driver 's license, expires 1987. Look at my birthday, for crying out load I haven' t even been born yet . And , look at this picture , my brother , my sister , and me . Look at the sweatshirt , Doc , class of 1984. Why do you keep following me around ? Hey beat it , spook , this don ' t concern you .
MARKERINTEXT . <<< " DOUBLEQUOTES "
2019-04-03 09:38:06 +00:00
class FailHeredocDoubleQuotes
2014-04-28 13:19:38 +00:00
{
}
2019-04-03 09:38:06 +00:00
DOUBLEQUOTES . <<< " DOUBLEQUOTESTABBED "
class FailHeredocDoubleQuotesTabbed
2014-04-28 13:19:38 +00:00
{
2019-04-03 09:38:06 +00:00
}
DOUBLEQUOTESTABBED . <<< HEREDOCPHP73
class FailHeredocPHP73
{
}
HEREDOCPHP73 ;
}
2014-04-28 13:19:38 +00:00
2019-04-03 09:38:06 +00:00
public function test_nowdoc ()
{
return <<< 'NOWDOC'
class FailNowdocBasic
{
2014-04-28 13:19:38 +00:00
}
2019-04-03 09:38:06 +00:00
NOWDOC . <<< 'WHITESPACE'
class FailNowdocWhitespace
{
}
WHITESPACE . <<< 'NOWDOCTABBED'
class FailNowdocTabbed
2014-04-28 13:19:38 +00:00
{
}
2019-04-03 09:38:06 +00:00
NOWDOCTABBED . <<< 'NOWDOCPHP73'
class FailNowdocPHP73
2019-04-03 08:33:58 +00:00
{
}
2019-04-03 09:38:06 +00:00
NOWDOCPHP73 ;
}
public function test_followed_by_parentheses ()
{
return array ( <<< PARENTHESES
class FailParentheses
{
}
PARENTHESES );
}
public function test_followed_by_comma ()
{
return array ( 1 , 2 , <<< COMMA
class FailComma
{
}
COMMA , 3 , 4 );
}
public function test_followed_by_period ()
{
return <<< PERIOD
class FailPeriod
{
}
PERIOD . '?>' ;
2012-11-25 13:10:58 +00:00
}
2019-04-03 09:38:06 +00:00
public function test_simple_string ()
2012-11-25 13:10:58 +00:00
{
2019-04-03 09:38:06 +00:00
return 'class FailSimpleString {}' ;
2012-11-25 13:10:58 +00:00
}
2021-08-29 10:19:33 +00:00
public function test_unicode_heredoc ()
{
return array ( 1 , 2 , <<< öéçив必
class FailUnicode
{
}
öéçив必 , 3 , 4 );
}
public function test_wrapped_in_curly_brackets ()
{
return $ { <<< FOO
class FailCurlyBrackets
{
}
FOO };
}
public function test_wrapped_in_angle_brackets ()
{
return [ <<< FOO
class FailAngleBrackets
{
}
FOO ];
}
2012-11-25 13:10:58 +00:00
}
2021-08-20 22:16:46 +00:00
// Issue #10067.
abstract class First {
public function heredocDuplicateMarker () : void {
echo <<< DUPLICATE_MARKER
DUPLICATE_MARKER ;
}
}
abstract class Second extends First {
public function heredocDuplicateMarker () : void {
echo <<< DUPLICATE_MARKER
DUPLICATE_MARKER ;
}
}
abstract class Third extends First {
public function heredocMarkersOnlyWhitespaceBetween () : void {
echo <<< DUPLICATE_MARKER
DUPLICATE_MARKER ;
}
}