-
Notifications
You must be signed in to change notification settings - Fork 860
Expand file tree
/
Copy pathstring.xml
More file actions
1389 lines (1221 loc) · 38.2 KB
/
string.xml
File metadata and controls
1389 lines (1221 loc) · 38.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
<sect1 xml:id="language.types.string">
<title>Strings</title>
<para>
A <type>string</type> is a series of characters, where a character is
the same as a byte. This means that PHP only supports a 256-character set,
and hence does not offer native Unicode support. See
<link linkend="language.types.string.details">details of the string
type</link>.
</para>
<note>
<simpara>
On 32-bit builds, a <type>string</type> can be as large as up to 2GB
(2147483647 bytes maximum)
</simpara>
</note>
<sect2 xml:id="language.types.string.syntax">
<title>Syntax</title>
<para>
A <type>string</type> literal can be specified in four different ways:
</para>
<itemizedlist>
<listitem>
<simpara>
<link linkend="language.types.string.syntax.single">single quoted</link>
</simpara>
</listitem>
<listitem>
<simpara>
<link linkend="language.types.string.syntax.double">double quoted</link>
</simpara>
</listitem>
<listitem>
<simpara>
<link linkend="language.types.string.syntax.heredoc">heredoc syntax</link>
</simpara>
</listitem>
<listitem>
<simpara>
<link linkend="language.types.string.syntax.nowdoc">nowdoc syntax</link>
</simpara>
</listitem>
</itemizedlist>
<sect3 xml:id="language.types.string.syntax.single">
<title>Single quoted</title>
<para>
The simplest way to specify a <type>string</type> is to enclose it in single
quotes (the character <literal>'</literal>).
</para>
<para>
To specify a literal single quote, escape it with a backslash
(<literal>\</literal>). To specify a literal backslash, double it
(<literal>\\</literal>). All other instances of backslash will be treated
as a literal backslash: this means that the other escape sequences you
might be used to, such as <literal>\r</literal> or <literal>\n</literal>,
will be output literally as specified rather than having any special
meaning.
</para>
<note>
<simpara>
Unlike the <link linkend="language.types.string.syntax.double">double-quoted</link>
and <link linkend="language.types.string.syntax.heredoc">heredoc</link> syntaxes,
<link linkend="language.variables">variables</link> and escape sequences
for special characters will <emphasis>not</emphasis> be expanded when they
occur in single quoted <type>string</type>s.
</simpara>
</note>
<example>
<title>Syntax Variants</title>
<programlisting role="php">
<![CDATA[
<?php
echo 'this is a simple string', PHP_EOL;
echo 'You can also have embedded newlines in
strings this way as it is
okay to do', PHP_EOL;
// Outputs: Arnold once said: "I'll be back"
echo 'Arnold once said: "I\'ll be back"', PHP_EOL;
// Outputs: You deleted C:\*.*?
echo 'You deleted C:\\*.*?', PHP_EOL;
// Outputs: You deleted C:\*.*?
echo 'You deleted C:\*.*?', PHP_EOL;
// Outputs: This will not expand: \n a newline
echo 'This will not expand: \n a newline', PHP_EOL;
// Outputs: Variables do not $expand $either
echo 'Variables do not $expand $either', PHP_EOL;
?>
]]>
</programlisting>
</example>
</sect3>
<sect3 xml:id="language.types.string.syntax.double">
<title>Double quoted</title>
<para>
If the <type>string</type> is enclosed in double-quotes (<literal>"</literal>), PHP will
interpret the following escape sequences for special characters:
</para>
<table>
<title>Escaped characters</title>
<tgroup cols="2">
<thead>
<row>
<entry>Sequence</entry>
<entry>Meaning</entry>
</row>
</thead>
<tbody>
<row>
<entry><literal>\n</literal></entry>
<entry>linefeed (LF or 0x0A (10) in ASCII)</entry>
</row>
<row>
<entry><literal>\r</literal></entry>
<entry>carriage return (CR or 0x0D (13) in ASCII)</entry>
</row>
<row>
<entry><literal>\t</literal></entry>
<entry>horizontal tab (HT or 0x09 (9) in ASCII)</entry>
</row>
<row>
<entry><literal>\v</literal></entry>
<entry>vertical tab (VT or 0x0B (11) in ASCII)</entry>
</row>
<row>
<entry><literal>\e</literal></entry>
<entry>escape (ESC or 0x1B (27) in ASCII)</entry>
</row>
<row>
<entry><literal>\f</literal></entry>
<entry>form feed (FF or 0x0C (12) in ASCII)</entry>
</row>
<row>
<entry><literal>\\</literal></entry>
<entry>backslash</entry>
</row>
<row>
<entry><literal>\$</literal></entry>
<entry>dollar sign</entry>
</row>
<row>
<entry><literal>\"</literal></entry>
<entry>double-quote</entry>
</row>
<row>
<entry><literal>\[0-7]{1,3}</literal></entry>
<entry>
Octal: the sequence of characters matching the regular expression <literal>[0-7]{1,3}</literal>
is a character in octal notation (e.g. <literal>"\101" === "A"</literal>),
which silently overflows to fit in a byte (e.g. <literal>"\400" === "\000"</literal>)
</entry>
</row>
<row>
<entry><literal>\x[0-9A-Fa-f]{1,2}</literal></entry>
<entry>
Hexadecimal: the sequence of characters matching the regular expression
<literal>[0-9A-Fa-f]{1,2}</literal> is a character in hexadecimal notation
(e.g. <literal>"\x41" === "A"</literal>)
</entry>
</row>
<row>
<entry><literal>\u{[0-9A-Fa-f]+}</literal></entry>
<entry>
Unicode: the sequence of characters matching the regular expression <literal>[0-9A-Fa-f]+</literal>
is a Unicode codepoint, which will be output to the string as that codepoint's UTF-8 representation.
The braces are required in the sequence. E.g. <literal>"\u{41}" === "A"</literal>
</entry>
</row>
</tbody>
</tgroup>
</table>
<para>
As in single quoted <type>string</type>s, escaping any other character will
result in the backslash being printed too.
</para>
<para>
The most important feature of double-quoted <type>string</type>s is the fact
that variable names will be expanded. See
<link linkend="language.types.string.parsing">string interpolation</link> for
details.
</para>
</sect3>
<sect3 xml:id="language.types.string.syntax.heredoc">
<title>Heredoc</title>
<simpara>
A third way to delimit <type>string</type>s is the heredoc syntax:
<literal><<<</literal>. After this operator, an identifier is
provided, then a newline. The <type>string</type> itself follows, and then
the same identifier again to close the quotation.
</simpara>
<simpara>
The closing identifier may be indented by space or tab, in which case
the indentation will be stripped from all lines in the doc string.
Prior to PHP 7.3.0, the closing identifier <emphasis>must</emphasis>
begin in the first column of the line.
</simpara>
<simpara>
Also, the closing identifier must follow the same naming rules as any
other label in PHP: it must contain only alphanumeric characters and
underscores, and must start with a non-digit character or underscore.
</simpara>
<example>
<title>Basic Heredoc example as of PHP 7.3.0</title>
<programlisting role="php">
<![CDATA[
<?php
// no indentation
echo <<<END
a
b
c
\n
END;
// 4 spaces of indentation
echo <<<END
a
b
c
END;
]]>
</programlisting>
&example.outputs.73;
<screen>
<![CDATA[
a
b
c
a
b
c
]]>
</screen>
</example>
<simpara>
If the closing identifier is indented further than any lines of the body, then a <classname>ParseError</classname> will be thrown:
</simpara>
<example>
<title>Closing identifier must not be indented further than any lines of the body</title>
<programlisting role="php">
<![CDATA[
<?php
echo <<<END
a
b
c
END;
]]>
</programlisting>
&example.outputs.73;
<screen>
<![CDATA[
Parse error: Invalid body indentation level (expecting an indentation level of at least 3) in example.php on line 4
]]>
</screen>
</example>
<simpara>
If the closing identifier is indented, tabs can be used as well, however,
tabs and spaces <emphasis>must not</emphasis> be intermixed regarding
the indentation of the closing identifier and the indentation of the body
(up to the closing identifier). In any of these cases, a <classname>ParseError</classname> will be thrown.
These whitespace constraints have been included because mixing tabs and
spaces for indentation is harmful to legibility.
</simpara>
<example>
<title>Different indentation for body (spaces) closing identifier</title>
<programlisting role="php" annotations="non-interactive">
<![CDATA[
<?php
// All the following code do not work.
// different indentation for body (spaces) ending marker (tabs)
{
echo <<<END
a
END;
}
// mixing spaces and tabs in body
{
echo <<<END
a
END;
}
// mixing spaces and tabs in ending marker
{
echo <<<END
a
END;
}
]]>
</programlisting>
&example.outputs.73;
<screen>
<![CDATA[
Parse error: Invalid indentation - tabs and spaces cannot be mixed in example.php line 8
]]>
</screen>
</example>
<simpara>
The closing identifier for the body string is not required to be
followed by a semicolon or newline. For example, the following code
is allowed as of PHP 7.3.0:
</simpara>
<example>
<title>Continuing an expression after a closing identifier</title>
<programlisting role="php">
<![CDATA[
<?php
$values = [<<<END
a
b
c
END, 'd e f'];
var_dump($values);
]]>
</programlisting>
&example.outputs.73;
<screen>
<![CDATA[
array(2) {
[0] =>
string(11) "a
b
c"
[1] =>
string(5) "d e f"
}
]]>
</screen>
</example>
<warning>
<simpara>
If the closing identifier was found at the start of a line, then
regardless of whether it was a part of another word, it may be considered
as the closing identifier and causes a <classname>ParseError</classname>.
</simpara>
<example>
<title>Closing identifier in body of the string tends to cause ParseError</title>
<programlisting role="php">
<![CDATA[
<?php
$values = [<<<END
a
b
END ING
END, 'd e f'];
]]>
</programlisting>
&example.outputs.73;
<screen>
<![CDATA[
Parse error: syntax error, unexpected identifier "ING", expecting "]" in example.php on line 5
]]>
</screen>
</example>
<simpara>
To avoid this problem, it is safe to follow the simple rule:
<emphasis>do not choose a word that appears in the body of the text
as a closing identifier</emphasis>.
</simpara>
</warning>
<warning>
<simpara>
Prior to PHP 7.3.0, it is very important to note that the line with the
closing identifier must contain no other characters, except a semicolon
(<literal>;</literal>).
That means especially that the identifier
<emphasis>may not be indented</emphasis>, and there may not be any spaces
or tabs before or after the semicolon. It's also important to realize that
the first character before the closing identifier must be a newline as
defined by the local operating system. This is <literal>\n</literal> on
UNIX systems, including macOS. The closing delimiter must also be
followed by a newline.
</simpara>
<simpara>
If this rule is broken and the closing identifier is not "clean", it will
not be considered a closing identifier, and PHP will continue looking for
one. If a proper closing identifier is not found before the end of the
current file, a parse error will result at the last line.
</simpara>
<example>
<title>Invalid example, prior to PHP 7.3.0</title>
<programlisting role="php">
<!-- This is an INVALID example -->
<![CDATA[
<?php
class foo {
public $bar = <<<EOT
bar
EOT;
}
// Identifier must not be indented
?>
]]>
</programlisting>
</example>
<example>
<title>Valid example, even prior to PHP 7.3.0</title>
<programlisting role="php">
<!-- This is a VALID example -->
<![CDATA[
<?php
class foo {
public $bar = <<<EOT
bar
EOT;
}
?>
]]>
</programlisting>
</example>
<para>
Heredocs containing variables can not be used for initializing class properties.
</para>
</warning>
<para>
Heredoc text behaves just like a double-quoted <type>string</type>, without
the double quotes. This means that quotes in a heredoc do not need to be
escaped, but the escape codes listed above can still be used. Variables are
expanded, but the same care must be taken when expressing complex variables
inside a heredoc as with <type>string</type>s.
</para>
<example>
<title>Heredoc string quoting example</title>
<programlisting role="php">
<![CDATA[
<?php
$str = <<<EOD
Example of string
spanning multiple lines
using heredoc syntax.
EOD;
/* More complex example, with variables. */
class foo
{
var $foo;
var $bar;
function __construct()
{
$this->foo = 'Foo';
$this->bar = array('Bar1', 'Bar2', 'Bar3');
}
}
$foo = new foo();
$name = 'MyName';
echo <<<EOT
My name is "$name". I am printing some $foo->foo.
Now, I am printing some {$foo->bar[1]}.
This should print a capital 'A': \x41
EOT;
?>
]]>
</programlisting>
&example.outputs;
<screen>
<![CDATA[
My name is "MyName". I am printing some Foo.
Now, I am printing some Bar2.
This should print a capital 'A': A]]>
</screen>
</example>
<para>
It is also possible to use the Heredoc syntax to pass data to function
arguments:
</para>
<example>
<title>Heredoc in arguments example</title>
<programlisting role="php">
<![CDATA[
<?php
var_dump(array(<<<EOD
foobar!
EOD
));
?>
]]>
</programlisting>
</example>
<para>
It's possible to initialize static variables and class
properties/constants using the Heredoc syntax:
</para>
<example>
<title>Using Heredoc to initialize static values</title>
<programlisting role="php" annotations="non-interactive">
<![CDATA[
<?php
// Static variables
function foo()
{
static $bar = <<<LABEL
Nothing in here...
LABEL;
}
// Class properties/constants
class foo
{
const BAR = <<<FOOBAR
Constant example
FOOBAR;
public $baz = <<<FOOBAR
Property example
FOOBAR;
}
?>
]]>
</programlisting>
</example>
<para>
The opening Heredoc identifier may optionally be
enclosed in double quotes:
</para>
<example>
<title>Using double quotes in Heredoc</title>
<programlisting role="php">
<![CDATA[
<?php
echo <<<"FOOBAR"
Hello World!
FOOBAR;
?>
]]>
</programlisting>
</example>
</sect3>
<sect3 xml:id="language.types.string.syntax.nowdoc">
<title>Nowdoc</title>
<para>
Nowdocs are to single-quoted strings what heredocs are to double-quoted
strings. A nowdoc is specified similarly to a heredoc, but <emphasis>no
String interpolation is done</emphasis> inside a nowdoc. The construct is ideal for
embedding PHP code or other large blocks of text without the need for
escaping. It shares some features in common with the SGML
<literal><![CDATA[ ]]></literal> construct, in that it declares a
block of text which is not for parsing.
</para>
<para>
A nowdoc is identified with the same <literal><<<</literal>
sequence used for heredocs, but the identifier which follows is enclosed in
single quotes, e.g. <literal><<<'EOT'</literal>. All the rules for
heredoc identifiers also apply to nowdoc identifiers, especially those
regarding the appearance of the closing identifier.
</para>
<example>
<title>Nowdoc string quoting example</title>
<programlisting role="php">
<![CDATA[
<?php
echo <<<'EOD'
Example of string spanning multiple lines
using nowdoc syntax. Backslashes are always treated literally,
e.g. \\ and \'.
EOD;
]]>
</programlisting>
&example.outputs;
<screen>
<![CDATA[
Example of string spanning multiple lines
using nowdoc syntax. Backslashes are always treated literally,
e.g. \\ and \'.
]]>
</screen>
</example>
<example>
<title>Nowdoc string quoting example with variables</title>
<programlisting role="php">
<![CDATA[
<?php
class foo
{
public $foo;
public $bar;
function __construct()
{
$this->foo = 'Foo';
$this->bar = array('Bar1', 'Bar2', 'Bar3');
}
}
$foo = new foo();
$name = 'MyName';
echo <<<'EOT'
My name is "$name". I am printing some $foo->foo.
Now, I am printing some {$foo->bar[1]}.
This should not print a capital 'A': \x41
EOT;
?>
]]>
</programlisting>
&example.outputs;
<screen>
<![CDATA[
My name is "$name". I am printing some $foo->foo.
Now, I am printing some {$foo->bar[1]}.
This should not print a capital 'A': \x41]]>
</screen>
</example>
<example>
<title>Static data example</title>
<programlisting role="php" annotations="non-interactive">
<![CDATA[
<?php
class foo {
public $bar = <<<'EOT'
bar
EOT;
}
?>
]]>
</programlisting>
</example>
</sect3>
<sect3 xml:id="language.types.string.parsing">
<title>String interpolation</title>
<simpara>
When a <type>string</type> is specified in double quotes or with heredoc,
<link linkend="language.variables">variables</link> can be substituted within it.
</simpara>
<simpara>
There are two types of syntax: a
<link linkend="language.types.string.parsing.basic">basic</link> one and an
<link linkend="language.types.string.parsing.advanced">advanced</link> one.
The basic syntax is the most common and convenient. It provides a way to
embed a variable, an <type>array</type> value, or an <type>object</type>
property in a <type>string</type> with a minimum of effort.
</simpara>
<sect4 xml:id="language.types.string.parsing.basic">
<title>Basic syntax</title>
<simpara>
If a dollar sign (<literal>$</literal>) is encountered, the characters
that follow it which can be used in a variable name will be interpreted
as such and substituted.
</simpara>
<example>
<title>String Interpolation</title>
<programlisting role="php">
<![CDATA[
<?php
$juice = "apple";
echo "He drank some $juice juice." . PHP_EOL;
?>
]]>
</programlisting>
&example.outputs;
<screen>
<![CDATA[
He drank some apple juice.
]]>
</screen>
</example>
<simpara>
Formally, the structure for the basic variable substitution syntax is
as follows:
</simpara>
<informalexample>
<programlisting>
<![CDATA[
string-variable::
variable-name (offset-or-property)?
| ${ expression }
offset-or-property::
offset-in-string
| property-in-string
offset-in-string::
[ name ]
| [ variable-name ]
| [ integer-literal ]
property-in-string::
-> name
variable-name::
$ name
name::
[a-zA-Z_\x80-\xff][a-zA-Z0-9_\x80-\xff]*
]]>
</programlisting>
</informalexample>
<warning>
<para>
The <literal>${ expression }</literal> syntax is deprecated as of
PHP 8.2.0, as it can be interpreted as
<link linkend="language.variables.variable">variable variables</link>:
<informalexample>
<programlisting role="php">
<![CDATA[
<?php
const foo = 'bar';
$foo = 'foo';
$bar = 'bar';
var_dump("${foo}");
var_dump("${(foo)}");
?>
]]>
</programlisting>
&example.outputs.82;
<screen>
<![CDATA[
Deprecated: Using ${var} in strings is deprecated, use {$var} instead in file on line 6
Deprecated: Using ${expr} (variable variables) in strings is deprecated, use {${expr}} instead in file on line 9
string(3) "foo"
string(3) "bar"
]]>
</screen>
&example.outputs;
<screen>
<![CDATA[
string(3) "foo"
string(3) "bar"
]]>
</screen>
</informalexample>
The <link linkend="language.types.string.parsing.advanced">advanced</link>
string interpolation syntax should be used instead.
</para>
</warning>
<note>
<simpara>
If it is not possible to form a valid name the dollar sign remains
as verbatim in the string:
</simpara>
<informalexample>
<programlisting role="php">
<![CDATA[
<?php
echo "No interpolation $ has happened\n";
echo "No interpolation $\n has happened\n";
echo "No interpolation $2 has happened\n";
?>
]]>
</programlisting>
&example.outputs;
<screen>
<![CDATA[
No interpolation $ has happened
No interpolation $
has happened
No interpolation $2 has happened
]]>
</screen>
</informalexample>
</note>
<example>
<title>Interpolating the value of the first dimension of an array or property</title>
<programlisting role="php">
<![CDATA[
<?php
$juices = array("apple", "orange", "string_key" => "purple");
echo "He drank some $juices[0] juice.";
echo PHP_EOL;
echo "He drank some $juices[1] juice.";
echo PHP_EOL;
echo "He drank some $juices[string_key] juice.";
echo PHP_EOL;
class A {
public $s = "string";
}
$o = new A();
echo "Object value: $o->s.";
?>
]]>
</programlisting>
&example.outputs;
<screen>
<![CDATA[
He drank some apple juice.
He drank some orange juice.
He drank some purple juice.
Object value: string.
]]>
</screen>
</example>
<note>
<simpara>
The array key must be unquoted, and it is therefore not possible to
refer to a constant as a key with the basic syntax. Use the
<link linkend="language.types.string.parsing.advanced">advanced</link>
syntax instead.
</simpara>
</note>
<simpara>
As of PHP 7.1.0 also <emphasis>negative</emphasis> numeric indices are
supported.
</simpara>
<example><title>Negative numeric indices</title>
<programlisting role="php">
<![CDATA[
<?php
$string = 'string';
echo "The character at index -2 is $string[-2].", PHP_EOL;
$string[-3] = 'o';
echo "Changing the character at index -3 to o gives $string.", PHP_EOL;
?>
]]>
</programlisting>
&example.outputs;
<screen>
<![CDATA[
The character at index -2 is n.
Changing the character at index -3 to o gives strong.
]]>
</screen>
</example>
<simpara>
For anything more complex, the
<link linkend="language.types.string.parsing.advanced">advanced</link>
syntax must be used.
</simpara>
</sect4>
<sect4 xml:id="language.types.string.parsing.advanced">
<title>Advanced (curly) syntax</title>
<simpara>
The advanced syntax permits the interpolation of
<emphasis>variables</emphasis> with arbitrary accessors.
</simpara>
<simpara>
Any scalar variable, array element or object property
(<modifier>static</modifier> or not) with a
<type>string</type> representation can be included via this syntax.
The expression is written the same way as it would appear outside the
<type>string</type>, and then wrapped in <literal>{</literal> and
<literal>}</literal>. Since <literal>{</literal> can not be escaped, this
syntax will only be recognised when the <literal>$</literal> immediately
follows the <literal>{</literal>. Use <literal>{\$</literal> to get a
literal <literal>{$</literal>. Some examples to make it clear:
</simpara>
<example>
<title>Curly Syntax</title>
<programlisting role="php">
<![CDATA[
<?php
const DATA_KEY = 'const-key';
$great = 'fantastic';
$arr = [
'1',
'2',
'3',
[41, 42, 43],
'key' => 'Indexed value',
'const-key' => 'Key with minus sign',
'foo' => ['foo1', 'foo2', 'foo3']
];
// Won't work, outputs: This is { fantastic}
echo "This is { $great}";
// Works, outputs: This is fantastic
echo "This is {$great}";
class Square {
public $width;
public function __construct(int $width) { $this->width = $width; }
}
$square = new Square(5);
// Works
echo "This square is {$square->width}00 centimeters wide.";
// Works, quoted keys only work using the curly brace syntax
echo "This works: {$arr['key']}";
// Works
echo "This works: {$arr[3][2]}";
echo "This works: {$arr[DATA_KEY]}";
// When using multidimensional arrays, always use braces around arrays
// when inside of strings
echo "This works: {$arr['foo'][2]}";
echo "This works: {$obj->values[3]->name}";
echo "This works: {$obj->$staticProp}";
// Won't work, outputs: C:\directory\{fantastic}.txt
echo "C:\directory\{$great}.txt";
// Works, outputs: C:\directory\fantastic.txt
echo "C:\\directory\\{$great}.txt";
?>
]]>
</programlisting>
</example>
<note>
<simpara>
As this syntax allows arbitrary expressions it is possible to use
<link linkend="language.variables.variable">variable variables</link>
within the advanced syntax.
</simpara>
</note>
</sect4>
</sect3>
<sect3 xml:id="language.types.string.substr">
<title>String access and modification by character</title>