Fatal error: Call to undefined function socket_create()

后端 未结 6 742
情深已故
情深已故 2020-12-01 09:15

My code is like this:

if( ($this->master=socket_create(AF_INET,SOCK_STREAM,SOL_TCP)) < 0 )

    {
    die(\"socket_create() failed, reason: \".socket_s         


        
6条回答
  •  一向
    一向 (楼主)
    2020-12-01 09:16

    I got this error when my .env file was not set up properly. Make sure you have a .env file with valid database login credentials.

提交回复
热议问题