socket_set_blocking
(PHP4 >= 4.0b4)
socket_set_blocking --- 设定socket搁置/非搁置模式
语法 :
int socket_set_blocking
(int socket descriptor, int mode)说明 :
如果mode是false,则给予的socket descriptor将会切换成非搁置模式,如果mode是true,它将会切换成搁置模式。这会影响到像是fgets( )从socket读取的函数,在非搁置模式中,呼叫fgets( )将会永远传回搁置模式,它将会等待资料成为可用的资料。
此函数是事前呼叫socket_set_blocking( ),但是并不赞成这种用法。