mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-01 16:49:53 +00:00
5 lines
93 B
PHP
5 lines
93 B
PHP
<?php
|
|
$redis = new Redis();
|
|
$redis->connect('127.0.0.1', 6379);
|
|
echo $redis->ping(); // true
|