}
/**
- * @$delimiter character used as field separator
- * @enclosure end of
+ * @param delimiter character used as field separator
+ * @param enclosure end of
+ * @return array containing read data
*/
function fgetcsv($delimiter = ';', $enclosure = '')
{
}
/**
- * @pos new file position
- * @whence seek method (SEEK_SET, SEEK_CUR, SEEK_END)
+ * @param pos new file position
+ * @param whence seek method (SEEK_SET, SEEK_CUR, SEEK_END)
+ * @return Upon success, returns 0; otherwise, returns -1. Note that
+ * seeking past EOF is not considered an error.
*/
function fseek($pos, $whence = SEEK_SET)
{
}
/** Get a line from the file and strip HTML tags
- * @param $allow_tags tags to keep in the string
+ * @param $allowable_tags tags to keep in the string
*/
function fgetss($allowable_tags = NULL)
{
/**
* @param $str to write
- * @param $lngth maximum line length to write
+ * @param $length maximum line length to write
*/
function fwrite($str, $length = NULL)
{
}
/**
- * @param new size to truncate file to
+ * @param $size new size to truncate file to
*/
function ftruncate($size)
{