"stream"の翻訳 英語に:
辞書 日本-英語
例 (レビューされていない外部ソース)
| INDI DATA STREAM | INDI DATA STREAM |
| persistent is a flag the controls whether the stream is opened as a persistent stream. Generally speaking, this parameter will usually be 0. | Generally speaking, this parameter will usually be 0. |
| 注意 If you need to seek and write to the stream, it does not make sense to use this function, because the stream it returns is not guaranteed to be bound to the same resource as the original stream. | An error occurred while attempting conversion that has left origstream in an indeterminate state. newstream is set to NULL and it is highly recommended that you close origstream. |
| The is particularly useful when accessing HTTP URLs where the start of the actual stream data is found after an indeterminate offset into the stream. | The is particularly useful when accessing HTTP URLs where the start of the actual stream data is found after an indeterminate offset into the stream. |
| Returns an array of options on the specified stream or context. | Returns an array of options on the specified stream or context. |
| Creates and returns a stream context with any parameters supplied in params preset. | Creates and returns a stream context with any parameters supplied in params preset. |
| Sets the timeout value on stream, expressed in the sum of seconds and microseconds. | Sets the timeout value on stream, expressed in the sum of seconds and microseconds. |
| Open text file for reading. The stream is positioned at the beginning of the file. | Any remote files will be created according to the URL wrapper that was used to open the file, and the credentials supplied to the remote server. |
| Returns an indexed array containing the name of all stream filters available on the running system. | Returns an indexed array containing the name of all stream filters available on the running system. |
| Returns an indexed array containing the name of all stream wrappers available on the running system. | Returns an indexed array containing the name of all stream wrappers available on the running system. |
| Open text file for reading and writing. The stream is positioned at the beginning of the file. | Open text file for reading and writing. |
| 注意 Be aware that some stream implementations need to be handled very carefully. A few basic rules | A few basic rules |
| 注意 Although this function will not perform the conversion, some internal stream state might be changed by this call. | Although this function will not perform the conversion, some internal stream state might be changed by this call. |
| 戻り値の型は何でしょう 最後のprintlnはstreamクラスでなく | How about replace? How many parameters does it have, and what are their types? |
| print streamクラスのものです printlnのパラメータはいくつあるでしょう | What is the type of the return value? This last one, print line, isn't from the stream class, it's from the print stream class. |
| 戻り値の型は何でしょう 最後のprintlnはstreamクラスでなく | The return type is int, we can see it here. |
| Truncate the file to zero length or create text file for writing. The stream is positioned at the beginning of the file. | The stream is positioned at the beginning of the file. |
| Open for writing. The file is created if it does not exist. The stream is positioned at the end of the file. | Open text file for reading and writing. |
| Since this option disables buffering at the streams API level, you may experience lower performance when using streams functions on the stream this is deemed acceptable because you have told streams that you will be using the functions to match the underlying stream implementation. Only use this option when you are sure you need it. | Only use this option when you are sure you need it. |
| The internal position of the stream is advanced by the number of bytes that were read, so that subsequent reads will continue reading from that point. | The internal position of the stream is advanced by the number of bytes that were read, so that subsequent reads will continue reading from that point. |
| The internal position of the stream is advanced by the number of bytes that were read, so that subsequent reads will continue reading from that point. | By default, a stream is opened in blocking mode. |
| The internal position of the stream is advanced by the number of bytes that were written, so that subsequent writes will continue writing from that point. | Prev |
| Open text file for reading and writing. The file is created if it does not exist, otherwise it is truncated. The stream is positioned at the beginning of the file. | The stream is positioned at the beginning of the file. |
| 注意 NEVER call this function with an origstream that is reference by a file pointer in a PHP script! This function may cause the underlying stream to be closed which could cause a crash when the script next accesses the file pointer! | This function may cause the underlying stream to be closed which could cause a crash when the script next accesses the file pointer! |
| この関数は 指定した FTP stream に関して指定 した option に関する value を返します 現在 以下のオプションが サポートされています | Currently, the following options are supported |
| If not NULL, timeout specifies a maximum time to allow for the connection to be made. If the connection attempt takes longer than the timeout value, the connection attempt is aborted and NULL is returned to indicate that the stream could not be opened. | If the connection attempt takes longer than the timeout value, the connection attempt is aborted and NULL is returned to indicate that the stream could not be opened. |
| The 'b' character is ignored on all POSIX conforming systems which treat binary and text files in the same way. It is a good idea to specify the 'b' character whenever your stream is accessing data where the full 8 bits are important, so that your code will work when compiled on a system where the 'b' flag is important. | The 'b' character is ignored on all POSIX conforming systems which treat binary and text files in the same way. |