+1 vote
in PHP by

Which of the following is used for concatenation in PHP?

a) + (plus)

b) * (Asterisk)

c) . (dot)

d) append()

1 Answer

0 votes
by
c) . (dot)

Description: In PHP, the . (dot) operator is used for concatenation. Suppose there are two variables $a and $b, so the statement $a . $b will concatenate both $a and $b.

Related questions

+1 vote
asked May 13, 2022 in PHP by john ganales
0 votes
asked Oct 18, 2019 in C Sharp by Robin
...