PHP uses redis and php uses redis. PHP uses redis, php uses redis? Php * obtain the database name from the platform * $ dbname; * obtain the host, port, user, pwd * $ host from the environment variables; $ port; $ user; $ pwd; try {* set up PHP to use redis, and php to use redis
Connect ($ host, $ port); if ($ ret = false) {die ($ redis-> getLastError ());} $ ret = $ redis-> auth ($ user. "-". $ pwd. "-". $ dbname); if ($ ret = false) {die ($ redis-> getLastError ();}/* then you can operate the database, for more information, see phpredis official document */$ redis-> flushdb (); $ ret = $ redis-> set ("key", "value "); if ($ ret = false) {die ($ redis-> getLastError ();} else {echo "OK ". $ redis-> get ("key") ;}} catch (RedisException $ e) {d Ie ("Uncaught exception". $ e-> getMessage () ;}?>
Http://www.bkjia.com/PHPjc/924353.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/924353.htmlTechArticlePHP using redis, php using redis? Php/* obtain the database name from the platform */$ dbname = "";/* obtain the host, port, user, pwd */$ host = ''from the environment variable ''; $ port = ''; $ user =''; $ pwd = ''; try {/* to create...