corillo181 Posted November 24, 2007 Share Posted November 24, 2007 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. Quote Link to comment Share on other sites More sharing options...
xyn Posted November 24, 2007 Share Posted November 24, 2007 i'm rather confused of your problem. Quote Link to comment Share on other sites More sharing options...
corillo181 Posted November 24, 2007 Author Share Posted November 24, 2007 its not a problem i just want to learn so new things that is not easy to find tutorials of in the websites i look Quote Link to comment Share on other sites More sharing options...
xyn Posted November 24, 2007 Share Posted November 24, 2007 My advice is open source + ask questions. Quote Link to comment Share on other sites More sharing options...
hitman6003 Posted November 24, 2007 Share Posted November 24, 2007 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. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.