|
|

|

|

|
crypt
|
Updated Sun, 06 Aug 2000
|
explode
|

|

|
(unknown) echo -- Output one or more strings. Descriptionecho (string arg1, string
[argn]...)
Outputs all parameters.
Echo() is not actually a function (it is a
language construct) so you are not required to use parantheses
with it.
Esempio 1. Echo() example
echo "Hello World";
echo "This spans
multiple lines. The newlines will be
output as well";
echo "This spans\nmultiple lines. The newlines will be\noutput as well.";
|
|
Nota:
In fact, if you want to pass more than one parameter to echo,
you must not enclose the parameters within parentheses.
See also:
print(),
printf(), and
flush().

|

|
crypt
|
Updated Sun, 06 Aug 2000
|
explode
|

|

|
|
|