Heim >Backend-Entwicklung >PHP-Tutorial >thinkphp S函数使用phpredis出现问题

thinkphp S函数使用phpredis出现问题

WBOY
WBOYOriginal
2016-07-06 13:52:471165Durchsuche

<code>    public function test3()
        {
                $a=S(array(
                'type' => 'redis',
                'prefix' => 'think',
                'expire' => 3600)
                );

                // 设置缓存
           echo S('name', "1111");   //返回值是1
        
    }

    public function test4(){
       echo  $value = S("name");    //什么不输出 dump的话输出false
    }</code>

回复内容:

<code>    public function test3()
        {
                $a=S(array(
                'type' => 'redis',
                'prefix' => 'think',
                'expire' => 3600)
                );

                // 设置缓存
           echo S('name', "1111");   //返回值是1
        
    }

    public function test4(){
       echo  $value = S("name");    //什么不输出 dump的话输出false
    }</code>

<code class="php">
S('name', "1111", ['type' => 'redis',
                'prefix' => 'think',
                'expire' => 3600]);
</code>
<code class="php">
/**
 * 缓存管理
 * @param mixed $name 缓存名称,如果为数组表示进行缓存设置
 * @param mixed $value 缓存值
 * @param mixed $options 缓存参数
 * @return mixed
 */
function S($name, $value = '', $options = null)</code>

<code>S('name', 1111);   // 返回的是这个操作的状态值,如果操作成功就是返回的true,反之返回的时候false;所以echo 1部队吗?
为什么不echo S('name')?;</code>
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn