Jump to content

good tutorial ference for.


corillo181

Recommended Posts

he i been doing php for sometime now, but i try looking in the manual and didn't find or look well enough for this type of things that i haven't learn yet.

 

variable declaration such as int string etc.

 

$variable = <<<something

 

>>

 

and many of things that i would consider advance since i donut see no tutorial in the general learning site.

Link to comment
https://forums.phpfreaks.com/topic/78717-good-tutorial-ference-for/
Share on other sites

variable declaration such as int string etc.

 

 

I think you mean type casting:

 

http://www.php.net/manual/en/language.types.type-juggling.php

 

 

$variable = <<<something

 

<<

 

This is called heredoc syntax:

 

http://us.php.net/manual/en/language.types.string.php#language.types.string.syntax.heredoc

 

 

What else would you consider "advanced"?  Type casting is one of the basics in any statically typed language (php is dynamic).  Heredoc is used extensively by perl programmers.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.