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. Link to comment https://forums.phpfreaks.com/topic/78717-good-tutorial-ference-for/ Share on other sites More sharing options...
xyn Posted November 24, 2007 Share Posted November 24, 2007 i'm rather confused of your problem. Link to comment https://forums.phpfreaks.com/topic/78717-good-tutorial-ference-for/#findComment-398359 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 Link to comment https://forums.phpfreaks.com/topic/78717-good-tutorial-ference-for/#findComment-398362 Share on other sites More sharing options...
xyn Posted November 24, 2007 Share Posted November 24, 2007 My advice is open source + ask questions. Link to comment https://forums.phpfreaks.com/topic/78717-good-tutorial-ference-for/#findComment-398363 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. Link to comment https://forums.phpfreaks.com/topic/78717-good-tutorial-ference-for/#findComment-398366 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.