zoukankan      html  css  js  c++  java
  • PHP中的$this用法

    <?php
    class test{
        function abc(){
            return '123';
        }
    }
    header("Content-type: text/html; charset=utf-8");
    
    $servername = 'localhost';
    $username = '*****';  //用户名
    $password = '****';  //密码
    $dbname = "****";   //数据库
    $pdo = new PDO("mysql:host=$servername;dbname=$dbname", $username, $password);
    
    $redis = new Redis();
    $time=strtotime('now');
    $redis->connect('127.0.0.1', 6379);
    
    try{
        $result = new test();
        $ret = $result->abc();
       var_dump($ret);//123
    
    }catch (PDOException $e) {
        print "Error!: " . $e->getMessage() . "<br/>";
        die();
    }
    
    
    
    
    
    
    ?>
    世界上最美的风景,是自己努力的模样
  • 相关阅读:
    codeforces 671C
    zoj3256
    hit2739
    hdu5737
    2017.1其他简要题解
    hdu5967
    初探插头dp
    11月下旬题解
    CompletableFuture的get和getNow()的区别
    python 镜像
  • 原文地址:https://www.cnblogs.com/xiong-hua/p/14239551.html
Copyright © 2011-2022 走看看