ホームページ > バックエンド開発 > PHPチュートリアル > $this->pdo->exec($sql);这是什么意思

$this->pdo->exec($sql);这是什么意思

WBOY
リリース: 2016-06-06 20:19:40
オリジナル
2230 人が閲覧しました

<code>class test{
      protected $pdo;
    function delete($sql){
        $this->exec($sql);
    }
    function exec($sql){
        echo $this->pdo->exec($sql);
    }
}
$a=new test;
$a->delete('ver');</code>
ログイン後にコピー
ログイン後にコピー

看到一个源码是这样写的。(我省略了一部分)

为什么是$this->pdo->exec($sql); 而不是$this->exec($sql);
加上这个PDO有什么作用呢?

回复内容:

<code>class test{
      protected $pdo;
    function delete($sql){
        $this->exec($sql);
    }
    function exec($sql){
        echo $this->pdo->exec($sql);
    }
}
$a=new test;
$a->delete('ver');</code>
ログイン後にコピー
ログイン後にコピー

看到一个源码是这样写的。(我省略了一部分)

为什么是$this->pdo->exec($sql); 而不是$this->exec($sql);
加上这个PDO有什么作用呢?

protected $pdo;代表的就是和数据的连接。当需要执行SQL命令时,当然需要用到这个变量啊。

估计 __construct 中 有 $this->pdo = new PDO();之类的
$this->pdo 其实是指向了PDO这个类
$this 只是当前类
上面你的报错信息是说 你的 $sql 这个参数没传

因为你没有初始化pdo

<code class="php">public function __construct($pdo)
{
    $this->pdo = $pdo;
}</code>
ログイン後にコピー
関連ラベル:
php
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート