This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
uphp:functions:fopen [2017/03/18 19:27] jeff |
uphp:functions:fopen [2021/09/13 05:57] (current) |
||
|---|---|---|---|
| Line 1: | Line 1: | ||
| ======fopen====== | ======fopen====== | ||
| + | |||
| < | < | ||
| Line 5: | Line 6: | ||
| ====Description==== | ====Description==== | ||
| - | <well size=" | + | |
| - | <span style=" | + | <well size=" |
| - | < | + | <span style=" |
| - | <span style=" | + | <span style=" |
| - | <span style=" | + | <span style=" |
| - | <span style=" | + | <span style=" |
| - | <span style=" | + | <span style=" |
| - | <span style=" | + | <span style=" |
| + | <span style=" | ||
| </ | </ | ||
| - | Attempt to open a file or stream for reading or writing, and return the file handle for future operations | + | Attempt to open a file (or special |
| ====Parameters==== | ====Parameters==== | ||
| - | < | + | |
| + | <html><b>< | ||
| * ' | * ' | ||
| * ' | * ' | ||
| - | < | + | <html><b>< |
| * ' | * ' | ||
| * ' | * ' | ||
| * ' | * ' | ||
| - | ====Return | + | ====Return |
| - | Upon success it returns a file handle which may be used together with the other file functions that require a handle such as [[fgets()]], | + | |
| - | If the attempt to open the file or stream fails it will return 0 | + | < |
| + | |||
| + | The file handle may be used together with the other file functions that require a handle such as [[fgets()]], | ||
| ====Example==== | ====Example==== | ||
| + | |||
| <code php> | <code php> | ||
| <? | <? | ||
| Line 46: | Line 53: | ||
| ====See Also==== | ====See Also==== | ||
| - | [[f485open()]] - Open the RS-485 port as a stream | ||
| [[fseropen()]] - Open the serial port at the specified baud rate with optional parameters | [[fseropen()]] - Open the serial port at the specified baud rate with optional parameters | ||
| + | |||
| + | [[f485open()]] - Open the RS-485 port at the specified baud rate and parity | ||
| [[fsockopen()]] - Open an internet socket connection with optional timeout | [[fsockopen()]] - Open an internet socket connection with optional timeout | ||
| - | [[fclose()]] - Close a file, stream or socket | + | [[fread()]] - Read bytes from a file, stream or socket |
| - | [[feof()]] - Test if no more data is available in a file or stream | + | [[fgets()]] - Return a single line from a file, stream |
| - | [[fgets()]] - Return a single line from a file or stream, with optional size limit | + | [[fwrite()]] - Write data to a file, stream |
| - | [[fread()]] - Return bytes from a file or stream | + | [[tar_put()]] - Add a file to an open file in TAR format |
| - | [[fseek()]] - Position the file pointer | + | [[feof()]] - Test if no more data is available |
| - | [[ftell()]] - Return | + | [[filesize()]] - Return |
| - | [[fwrite()]] - Write data to a file or stream | + | [[fseek()]] - Position the file pointer in an open file |
| - | [[tar_put()]] - Add a file to an open file in TAR format | + | [[ftell()]] - Return the current position of a file read/write pointer |
| - | [[chdir()]] - Change uPHP's current directory | + | [[fclose()]] - Close a file, stream or socket |