ThinkPHP学習記 (9) Thinkphpの総合クエリメソッド
<?php /** * 普通查询 * 1.字符串形式 * 2.数组形式(推荐形式) * $user=M('user'); * $data['username']='user'; * $list=$user->where($data)->select(); * 3.对象形式 * $user=M('user'); * $condition=new stdClass(); * $condition->username='user'; * $list=$user->where($condition)->select(); * 判断条件:(太多)查询表达式:5.3. * eq(相等)、ne(不相等)、neq(不相等)、gt(大于)、lt(小于)、elt(小于等于)、 * le(小于等于)、gte(大于等于)、ge(大于等于)、 * like * [not] between * [not] in * exp 执行标准sql语句 * 区间查询 * 组合查询 * 复合查询 * 统计查询 * 定位查询 * sql查询 * 动态查询 * */ class SelectAction extends Action{ public function index(){ $user=M('user'); // //1.1数组查询(可以使用查询表达式来设置获取范围) // //DB_LIKE_FIELDS=>'username,password';(自动进行模糊匹配) // $data['username']=array('like','us%'); // $data['id']=array('between','0,10'); // $data['id']=array('not between',array('5','10')); // $data['id']=array('in','5,8,10'); // $list=$user->where($data)->select(); // $date['id']=array('exp','in(0,2,3,7)'); // $date['createtime']=array('exp','createtime+1'); // $list=$user->where(array('id'=>1))->save($date); // dump($list); // //1.2对象形式 // $user=M('user'); // $condition=new stdClass(); // $condition->username='user'; // $list=$user->where($condition)->select(); // dump($list); //2区间查询 // $data['id']=array(array('gt',3),array('lt',10)); // $data['id']=array(array('gt',3),array('lt',10),'or'); // $data['id']=array(array('gt',3),array('lt',10),'and'); // $data['username']=array(array('like','u%'),array('like','a%'),'or'); // $list=$user->where($data)->select(); // dump($list); //3.组合查询 // $data['username']='user'; // $data['id']='8'; // $data['_logic']='or';//条件为or // $data['_string']='idwhere($data)->select(); // dump($list); //4.复合查询(idwhere($where)->select(); // dump($list); //5.统计查询count\max\min\avg\sum // $list=$user->where('id>5')->count('id'); // dump($list); // $list=$user->max('createtime'); // dump($list); // $list=$user->min('createtime'); // dump($list); // $list=$user->avg('createtime'); // dump($list); // $list=$user->sum('createtime'); // dump($list); //6.定位查询getN();first();last(); // //6.1初始化 //// $user=new AdvModel('user'); // //6.1.2或者new一个ComModel继承AdvModel // $user=new AdvModel('user'); // //直接返回结果当中的某条记录从0开始 // $list=$user->getN(0); // dump($list); //7.sql查询execute(更新和写入;有受影响行数无结果集)、query(用于查询) // $list=$user->query('from tb_user order by id desc'); // dump($list); //8.动态查询(方法后加上字段名getByUsername或者查询top) $user=new AdvModel('user'); // $list=$user->getByUsername('user'); $list=$user->top3(); dump($list); } } ?>

tomakephpapplicationsfaster、followthesesteps:1)useopcodecachinglikeopcacheTostoredscriptbytecode.2)最小化abasequeriesecachingingindexing.3)leveragephp7機能forbettercodeefficiency.4)

依存性注入(DI)は、明示的に推移的な依存関係によりPHPコードのテスト可能性を大幅に改善します。 1)DI分離クラスと特定の実装により、テストとメンテナンスが柔軟になります。 2)3つのタイプのうち、コンストラクターは、状態を一貫性に保つために明示的な式依存性を注入します。 3)DIコンテナを使用して複雑な依存関係を管理し、コードの品質と開発効率を向上させます。

DatabaseQueryoptimizationInpholvesseveralstrategESTOEnhancePerformance.1)selectonlynlynlyndorycolumnStoredatedataTransfer.2)useindexingtospeedupdataretrieval.3)revenmecrycachingtostoreres sultsoffrequent queries.4)

phpisusededemingemailsduetoitsbuilt-inmail()functionandsupportiveLibrarieslikephpmailerandswiftmailer.1)usethemail()functionforbasicemails、butithaslimitations.2)emploadforadvancedfeatureSlikelikelivableabableabuses.3)雇用

PHPパフォーマンスボトルネックは、次の手順で解決できます。1)パフォーマンス分析にXdebugまたはBlackfireを使用して問題を見つける。 2)データベースクエリを最適化し、APCUなどのキャッシュを使用します。 3)array_filterなどの効率的な関数を使用して、配列操作を最適化します。 4)bytecodeキャッシュ用のopcacheを構成します。 5)HTTP要求の削減や写真の最適化など、フロントエンドを最適化します。 6)パフォーマンスを継続的に監視および最適化します。これらの方法により、PHPアプリケーションのパフォーマンスを大幅に改善できます。

依存関係(di)inphpisadesignpatternativats anducesclassodulencies、拡張測定性、テスト可能性、および維持可能性。

cachingemprovesppperformancebystring of computationsorquickretrieval、還元装置の削減は、reducingerloadendenhancersponseTimes.efcectivestrategiesInclude:1)opcodecaching、compiledphpscriptsinmemorytoskipcompilation;


ホットAIツール

Undresser.AI Undress
リアルなヌード写真を作成する AI 搭載アプリ

AI Clothes Remover
写真から衣服を削除するオンライン AI ツール。

Undress AI Tool
脱衣画像を無料で

Clothoff.io
AI衣類リムーバー

Video Face Swap
完全無料の AI 顔交換ツールを使用して、あらゆるビデオの顔を簡単に交換できます。

人気の記事

ホットツール

SecLists
SecLists は、セキュリティ テスターの究極の相棒です。これは、セキュリティ評価中に頻繁に使用されるさまざまな種類のリストを 1 か所にまとめたものです。 SecLists は、セキュリティ テスターが必要とする可能性のあるすべてのリストを便利に提供することで、セキュリティ テストをより効率的かつ生産的にするのに役立ちます。リストの種類には、ユーザー名、パスワード、URL、ファジング ペイロード、機密データ パターン、Web シェルなどが含まれます。テスターはこのリポジトリを新しいテスト マシンにプルするだけで、必要なあらゆる種類のリストにアクセスできるようになります。

ZendStudio 13.5.1 Mac
強力な PHP 統合開発環境

MantisBT
Mantis は、製品の欠陥追跡を支援するために設計された、導入が簡単な Web ベースの欠陥追跡ツールです。 PHP、MySQL、Web サーバーが必要です。デモおよびホスティング サービスをチェックしてください。

MinGW - Minimalist GNU for Windows
このプロジェクトは osdn.net/projects/mingw に移行中です。引き続きそこでフォローしていただけます。 MinGW: GNU Compiler Collection (GCC) のネイティブ Windows ポートであり、ネイティブ Windows アプリケーションを構築するための自由に配布可能なインポート ライブラリとヘッダー ファイルであり、C99 機能をサポートする MSVC ランタイムの拡張機能が含まれています。すべての MinGW ソフトウェアは 64 ビット Windows プラットフォームで実行できます。

SublimeText3 Linux 新バージョン
SublimeText3 Linux 最新バージョン
