在构造方法中使用静态属性保存的PDO资源句柄在其他方法中无法调用???
<?php<br /><br />class DB{<br /> protected $link = '127.0.0.1';<br /> protected $dbname = 'think';<br /> static public $DB;<br /> private function __construct(){<br /> try{<br /> self::$DB = new PDO("mysql:host={$this->link};dbname={$this->dbname}",'root','root');<br /> }catch (PDOException $e){<br /> die("连接出错:".$e->getMessage());<br /> }<br /><br /> $sql = ' SELECT * FROM user WHERE id=? and username=? and email=? ';<br /> $stmt = self::$DB->prepare($sql);<br /> $stmt->execute([0=>'13',1=>'12',2=>'12']);<br /> echo '<pre class="brush:php;toolbar:false">';<br /> print_r($stmt->fetchAll(PDO::FETCH_ASSOC));<br /> echo $stmt->rowCount();<br /> }<br /> //静态方法,单例统一访问入口<br /> static public function getInstance() {<br /> if (is_null ( self::$DB ) || isset ( self::$DB )) {<br /> self::$DB = new self ();<br /> }<br /> return self::$DB;<br /> }<br /> public function Test(){<br /> $sql = ' SELECT * FROM user WHERE id=? and username=? and email=? ';<br /> $stmt = self::$DB->prepare($sql);<br /> $stmt->execute([0=>'13',1=>'12',2=>'12']);<br /> echo '<pre class="brush:php;toolbar:false">';<br /> print_r($stmt->fetchAll(PDO::FETCH_ASSOC));<br /> echo $stmt->rowCount();<br /> }<br />}<br />$db = DB::getInstance();<br />$db->Test();

我把Test方法复制在构造方法没有问题,为什么在Test方法中会出现Call to undefined method DB::prepare()???
求各位大神了

------解决思路----------------------
你至少应写作
class DB{<br /> protected $link = '127.0.0.1';<br /> protected $dbname = 'think';<br /> static public $DB;<br /> static public $_DB;<br /> private function __construct(){<br /> try{<br /> self::$_DB = new PDO("mysql:host={$this->link};dbname={$this->dbname}",'root','root');<br /> }catch (PDOException $e){<br /> die("连接出错:".$e->getMessage());<br /> }<br /> }<br /> //静态方法,单例统一访问入口<br /> static public function getInstance() {<br /> if (is_null ( self::$DB ) <br><font color='#FF8000'>------解决思路----------------------</font><br> isset ( self::$DB )) {<br /> self::$DB = new self ();<br /> }<br /> return self::$DB;<br /> }<br /> public function Test(){<br /> $sql = ' SELECT * FROM user WHERE id=? and username=? and email=? ';<br /> $stmt = self::$_DB->prepare($sql);<br /> $stmt->execute([0=>'13',1=>'12',2=>'12']);<br /> echo '<pre class="brush:php;toolbar:false">';<br /> print_r($stmt->fetchAll(PDO::FETCH_ASSOC));<br /> echo $stmt->rowCount();<br /> }<br />}<br />$db = DB::getInstance();<br />$db->Test();PDO 本身已经封装的很好了,如确需要进一步封装以简化调用代码
那么应该从 PDO 继承一个 DB 类,如
class DB extends PDO {<br /> private static $_Instance;<br /> function __construct() {<br /> $options = array(<br /> PDO::MYSQL_ATTR_INIT_COMMAND => "set names gbk",<br /> PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION,<br /> PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC,<br /> );<br /><br /> parent::__construct('mysql:dbname=test', 'root', '', $options);<br /> }<br /> //执行各种 sql 指令,并可通过参数 $param 进行扩展<br /> function query($sql, $param=null) {<br /> $res = [];<br /> try {<br /> $rs = parent::query($sql);<br /> do {<br /> if($t = $rs->fetchall()) $res[] = $t;<br /> }while($rs->nextRowset());<br /> return $res;<br /> } catch (PDOException $e) {<br /> die( "Error!: " . $e->getMessage() . "\n" );<br /> // die();<br /> }<br /> }<br /> //查询并返回单条记录<br /> static function fetch($sql) {<br /> if(! self::$_Instance) self::$_Instance = new self;<br /> return self::$_Instance->query($sql)[0][0];//->fetch();<br /> }<br /> //查询并以数组方式返回多条记录<br /> static function fetchall($sql) {<br /> if(! self::$_Instance) self::$_Instance = new self;<br /> $res = self::$_Instance->query($sql);//->fetchall();<br /> if(count($res) == 1) return current($res);<br /> }<br />}<br />这样你就有机会这样使用了
$r = DB::fetch("select * from user where name='my'");

ThebestapproachforsendingemailsinPHPisusingthePHPMailerlibraryduetoitsreliability,featurerichness,andeaseofuse.PHPMailersupportsSMTP,providesdetailederrorhandling,allowssendingHTMLandplaintextemails,supportsattachments,andenhancessecurity.Foroptimalu

The reason for using Dependency Injection (DI) is that it promotes loose coupling, testability, and maintainability of the code. 1) Use constructor to inject dependencies, 2) Avoid using service locators, 3) Use dependency injection containers to manage dependencies, 4) Improve testability through injecting dependencies, 5) Avoid over-injection dependencies, 6) Consider the impact of DI on performance.

PHPperformancetuningiscrucialbecauseitenhancesspeedandefficiency,whicharevitalforwebapplications.1)CachingwithAPCureducesdatabaseloadandimprovesresponsetimes.2)Optimizingdatabasequeriesbyselectingnecessarycolumnsandusingindexingspeedsupdataretrieval.

ThebestpracticesforsendingemailssecurelyinPHPinclude:1)UsingsecureconfigurationswithSMTPandSTARTTLSencryption,2)Validatingandsanitizinginputstopreventinjectionattacks,3)EncryptingsensitivedatawithinemailsusingOpenSSL,4)Properlyhandlingemailheaderstoa

TooptimizePHPapplicationsforperformance,usecaching,databaseoptimization,opcodecaching,andserverconfiguration.1)ImplementcachingwithAPCutoreducedatafetchtimes.2)Optimizedatabasesbyindexing,balancingreadandwriteoperations.3)EnableOPcachetoavoidrecompil

DependencyinjectioninPHPisadesignpatternthatenhancesflexibility,testability,andmaintainabilitybyprovidingexternaldependenciestoclasses.Itallowsforloosecoupling,easiertestingthroughmocking,andmodulardesign,butrequirescarefulstructuringtoavoidover-inje

PHP performance optimization can be achieved through the following steps: 1) use require_once or include_once on the top of the script to reduce the number of file loads; 2) use preprocessing statements and batch processing to reduce the number of database queries; 3) configure OPcache for opcode cache; 4) enable and configure PHP-FPM optimization process management; 5) use CDN to distribute static resources; 6) use Xdebug or Blackfire for code performance analysis; 7) select efficient data structures such as arrays; 8) write modular code for optimization execution.

OpcodecachingsignificantlyimprovesPHPperformancebycachingcompiledcode,reducingserverloadandresponsetimes.1)ItstorescompiledPHPcodeinmemory,bypassingparsingandcompiling.2)UseOPcachebysettingparametersinphp.ini,likememoryconsumptionandscriptlimits.3)Ad


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download
The most popular open source editor

Dreamweaver CS6
Visual web development tools

WebStorm Mac version
Useful JavaScript development tools
