GET 70% Discount on All Products Coupon code: "Board70"
Which of the following will set a 10 seconds read timeout for a stream?
ini_set(“default_socket_timeout”, 10);
stream_read_timeout($stream, 10);
Specify the timeout as the 5th parameter to the fsockopen() function used to open a stream
stream_set_timeout($stream, 10);
None of the above
TESTED 23 Feb 2025