[PHP] PHPDoc and file with function only

2001-03-13 Thread Remi Ricard
r the function * * Bigger comment for the function kjhdlakhdlakjfhlakdhf * @param string first param * @return boolean A value to be returned */ function tata($str) { return 1; } I'm able to document file which contains class. Remi Ricard [EMAIL PROTECTED] -- PHP General Ma

[PHP] Where to put the include()

2001-02-07 Thread Remi Ricard
Hi, I want to know why in the second file I don't get a=134 as expected. // fileToBeIncluded.php "; } class smallClass { function smf1() { f1(); } } ?> // file that don't work as expected // print a= "; f2(); echo ""; ?> // file that work as expected // print a=134 "; f2(); ec