1. Native SQL? ???? PDO ??
??? ??? ????.
$sql = "";//原生態(tài)sql語(yǔ)句 xx::model()->dbConnection->createCommand($sql)->execute();
2. Active Record ??
(1) ??? ??
??? ??? ????.
$post=new Post; $post->title='sample post'; $post->content='post body content'; $post->save();
(?? ???? ????: yii ?????)
(2) ?? ??
$condition? ???? ? ??? ?? ??? ??? ?? ????. ???? ???? ?? $condition? CDbCriteria? ????? ?? ? ??? ?? ?? WHERE? ???? ?? ??? ??? ? ????.
??? ??? ????.
$criteria=new CDbCriteria; $criteria->select='title'; // 只選擇 'title' 列 $criteria->condition='postID=:postID'; $criteria->params=array(':postID'=>10); $post=Post::model()->find($criteria);
CDbCriteria? ??? ??? find ???? ???? ????. ??? ?? ?? ?? ??? ?? ??? ?? ?????. ?? ?? ??? ?? ?? ??? ? ????.
$post=Post::model()->find(array( 'select'=>'title', 'condition'=>'postID=:postID', 'params'=>array(':postID'=>10), ));
?? ??? ??? ??? ?? ?? ????? ?? ?? findByAttributes() ? ??? ? ????. $attributes ????? ? ???? ???? ?? ??? ????.
?? ???????? findByNameAndTitle? ?? ???? ???? ? ??? ??? ? ????. ? ?? ??? ????? ???? ??, ?? ? ? ??? ?/??? ??? ?? ??? ???? ??? ????.
3. Query Builder ??
??? ??? ????.
$user = Yii::app()->db->createCommand() ->select('id, username, profile') ->from('tbl_user u') ->join('tbl_profile p', 'u.id=p.user_id') ->where('id=:id', array(':id'=>$id)) ->queryRow();
? ?? ????? ?? ??? ?? ??? php ??? ???? Programming Tutorial ??? ??????!
? ??? yii?? ??????? ???? ? ?? ??? ?? ?????. ??? ??? PHP ??? ????? ?? ?? ??? ?????!

? AI ??

Undress AI Tool
??? ???? ??

Undresser.AI Undress
???? ?? ??? ??? ?? AI ?? ?

AI Clothes Remover
???? ?? ???? ??? AI ?????.

Clothoff.io
AI ? ???

Video Face Swap
??? ??? AI ?? ?? ??? ???? ?? ???? ??? ?? ????!

?? ??

??? ??

???++7.3.1
???? ?? ?? ?? ???

SublimeText3 ??? ??
??? ??, ???? ?? ????.

???? 13.0.1 ???
??? PHP ?? ?? ??

???? CS6
??? ? ?? ??

SublimeText3 Mac ??
? ??? ?? ?? ?????(SublimeText3)

MySQL 8.0? ???? ??? ??? ??? ???? ?????? ???? ????. Windows?? MSI ?? ???? ???? ?? ????. ???? ?? ??? ????, ??? ??, ?? ?? ??, ?? ???? ??, ??? ?? ??? ? ?? ?????? ????? Zip ??? ???? ???? ??? ?????. Linux (? : Ubuntu)? APT? ?? ???? ??? ??? ?????? ?? ??, ?? ???? ??, ??? ?? ?? ? ?? ?? ??? ???? ????. ?? ???? ????, ?? ????? ????, ?? ???? ???, ???? ????, ?? ??? ???? ?? ?? ? ?? ?? ??? ????? ?? ? ???? ??? ???????.

?? YII ???? ??? YII ???? ?? ???? ??, ??? ?? ? ?? ?????. 1. ?? ???? ?? ??? ? ?? ??????? ???? YII? ?? ????? ???? ?? ???? ??? ??????. 2. ??? YII? ?? ??? ?? ???? ?? ?? ? ??? ?? ??? ???? ?? ? ???? ???? ??? ?? ????? ?????. 3. ?? ???? ???? ???? ?? ? ?? ?????? ???? ??? ??? ?????. ??? ???? ??? ??? ?? ?? ?????? ?? ?? ???? ???????.

MongoDB?? ?? ??????? ?? ??? "showdbs"??? ???? ????. 1.? ??? ?? ?? ?? ?????? ? ?????. 2. "??"??? ?? ??????? ???? ???? ???? ?? ? ? ????. 3. "??"? "??"? ?? ?? ?????????? ??????. 4. ????? ???? ?? "ListDatabases ()"???? ???? ??? ??? ??????. 5. "db.stats ()"??? ??? ?????? ??? ? ? ????.

useredisinsteadofatraditionaldatabasewhenyorapplicationrequiresspeedandreal-timedataprocessing, suchasforcaching, sessionmanagement, orreal-timeanalytics.rediesxcelsin : 1) Caching, Retoadon-PrimaryDatabases; 2) ?? ??, ??? datahandlon

???? SQL ??? ??? ????. 1. CreateTable Create? CreateTableemployees (Idintprimarykey, Namevarchar (100), SalaryDecimal (10,2))? ?? ???? ?????. 2. createIndex? keateIndExIdx_nameOmployees (name)? ?? ???? ????. 3. InsertInto? InsertInto Employeees (ID, Name, Salary) ? (1, 'Johndoe', 75000.00)? ?? ???? ?????. 4. ??? ??????

Eloquent? ???? ???????? ? ???? ???? 4 ?? ?? ??? ????. 1. ??? :: create ([ 'name'=> 'johndoe', 'email'=> 'john@example.com']? ?? ?? ??? ???? ???? ???? ???? ??? ?? ???? ??????. 2. ?? ???? ???? ??? ???? ??????? ?? ??? ???? ??? ?? ?? ?? ??? ??? ????? ?????. 3. FirstorCreate? ???? ?? ??? ?? ???? ??? ???? ?? ???? ?????. 4. UpdateorCreate? ???? ???? ??? ?????? ????????. ??? ? ?? ???? ???? ? ?????.

yiiisbetterforhigh-performanceprojectswitherlearningcurve, whilelaravelsuitsrapiddeveloyswithalargeecosystem.1) ?? yiiforperformanceandmodularity, ???? forexperienceddevelopers.2) OptforlaraveReaseFuseanDextensoftensoom, suptforlaraveforeaseandextensivet extensovetsiverd

YII ??? ??? ????? ?? ?? ??? ?? PHP ? ???? ???????. ?? ??? ??? ????. 1. PHP? ???? ?????? Windows?? ?? ??? ??? ?? Composer? ???? ??? ???? ????? ???? ?? ??? ???????. 2. Homebrew? ???? PHP ? Composer? ?? ? ?? ????? ??? ?? ??? ???? ?? ????. 3. Linux (? : Ubuntu)? APT? ?? PHP, Extensions ? Composer? ?? ? ?? ????? ??? Apache ?? Nginx? ???? ???? ??? ?????. ?? ??? ?? ?? ???? ?? ?? ??? ????. PHP? ???? ???? ?? ????? ?????. ??
