ホームページ バックエンド開発 PHPチュートリアル PHP5 で MVC 構造を学ぶ_PHP チュートリアル

PHP5 で MVC 構造を学ぶ_PHP チュートリアル

Jul 21, 2016 pm 04:11 PM
mvc php5 web 1つ 導入 練習する 勉強 開発する 比較する 流れ 使用 構造


1. はじめに

現在、WEB アプリケーションを開発する際に最も一般的な方法の 1 つは、「MVC」構造を使用して WEB アプリケーションを開発することです。これにより、プログラムの設計がより簡単になります。 「MVC」とは何ですか?簡単に言うと「Model」「View」「Controller」の組み合わせ、つまりすべて「3層」の抽象構造です。もちろん、ここで言う「MVC」はWEB上のアプリケーション向けです。 「コードとページ設計の分離」は、Java Servlet/JavaServer Pages テクノロジーを使用した「Struts」で最も明確に表現されています。興味のある方は、http://jakarta.apache.org/strutsLook を参照してください。この設計パターンにより、プログラマーはコードの設計、作成、デバッグに集中でき、Web デザイナーは特定の詳細に注意を払わずに設計に多くの時間を費やすことができるため、この分業は大規模プロジェクトに完全に適しています。またはエンタープライズレベルの分散アプリケーション開発。

PHP5 のリリースから、オブジェクト指向の機能がますます充実していることがわかります。Zend Optimizer と組み合わせれば、PHP を使用して大規模な商用 Web サイトや分散エンタープライズ アプリケーションを開発できるようになりました。カプセル化が達成されました。

PHP の「MVC」デザインパターンを使用して WEB アプリケーションを開発するにはどうすればよいですか? 1 つのこと (コードとページのデザインは分離されている) を覚えておいて、簡単な例を使ってそれを説明します。たとえば、データベースからメンバー情報をクエリして Web ページに表示したい場合は、次の 2 つの点を考慮する必要があります。 1. データベースに接続し、メンバーの情報を取得します。 2. Web ページにメンバー情報を表示し、データベースに接続します。これを「DB」クラスと呼びます。このとき「Model」を書く必要があります。「DB」クラスを操作してデータを取得するプログラムが役割を果たします。このプログラムは、「POST」または「PUT」データを受け取ります。クライアントにアクセスし、「DB」クラスを呼び出してデータを取得し、これらのデータを「コントローラー」に格納し、最後にそのデータを「ビュー」に渡して、上記の分析から特定のレイアウト形式に従って表示します。ここではテンプレートがその役割を果たしていることがわかります。もちろん、テンプレートクラスだけでは MVC とは言えません。詳細については、「JSF」を参照してください。

「3t」は主に「Controller」のデータを読み込み、最後に簡単なテンプレート構文でデータを表示するテンプレートクラスです。

解析速度が速く、必要に応じてHTMLキャッシュまたはPHPキャッシュを使用することもでき、高速で安定したWEBアプリケーションを実現することもできます。有名なテンプレートクラス「SMARTY」は、インストールや操作が簡単で、データの表示に関しても「PHPの文法」や「JavaBeans」に似ており、必要な機能を追加することができます。オープンソースなので、近日中にプラグイン機能もサポートされる予定です

拡張性が高く、最新の PHP5 をサポートしているため、いつでも使用できます。 PHP バージョン >=4.0.6。もちろん、サーバー上のファイルを操作する権限が必要です

それは強力で、テンプレートのマルチレベルのネスト、マルチレベルの配列ループなどをサポートしています

もちろん、このテンプレートには多くの改善の余地があります。継続的に改善する前に、さまざまな環境でテストして使用する必要があります。現在、

II 環境でのみテストされています。解凍後、次のディレクトリ構造が表示されるはずです:

./3tx.x/cmp/ コンパイルされたファイル (このフォルダーが読み取り可能および書き込み可能であることを確認してください)
./3tx.x/tpl/ テンプレート ファイル (テンプレート ファイルはここに配置されます。このフォルダーが読み取り可能であることを確認してください)
./3tx.x/che/ キャッシュ ファイルが保存されているフォルダー (このフォルダーが読み取り可能および書き込み可能であることを確認してください)
./3tx.x/ttt/ ttt.php 3T テンプレート クラス ファイル
./3tx.x/ プログラム ファイル (作成したプログラムはここに配置されます)

2. PHP バージョンを PHP4.0.6 より低くすることはできません。全体的なパフォーマンスを考慮して、PHP バージョンを 4.3 .0 以上にアップグレードすることをお勧めします。プログラムの内容が大幅に改善されます

3. 実行時に変数が定義されていない場合は、プログラムの前に「error_reporting(7);」関数を追加してください

3. テンプレートの簡単な構文説明:
通常、左中括弧「{」と右中括弧「}」はテンプレート構文の先頭と末尾として使用されます。もちろん、「[」や「]」などのカスタム区切り文字も使用できます。中括弧を使用する 区切り文字について説明します

(注: 以下の [tplCode] と [/tplCode] の間のコードはテンプレート構文コードです)

1. テンプレート ファイル内で次のような PHP コードを使用します:
[tplCode]
{php }
$i = 3;
echo $i;
{/php}
[/tplCode]
「例6」を参照してください。

2. 次のような foreach ループを使用します。配列 $a、PHP の foreach に相当します ($a as $k=>$v)....)
[/tplCode]
{foreach:$a,$k,$v}
$v = { $ v}

{/foreach}
[/tplCode]

2 番目の使用法 (配列 $a に 15 個の要素がある場合、次のループは最初の 5 個だけを取得します)
[tplCode]
{foreach:$a,$k,$v,5}
$v = {$v}

{/foreach}
[/tplCode]

3 番目の使用法 (ループする回数。配列 $a に 15 個の要素がある場合、次のループは 3 番目の要素から始まり 5 番目の要素で終了します)
[tplCode]
{foreach:$a,$k, $v,3, 5}
$v = {$v}

{/foreach}
[/tplCode]
「example1」と「example3」を参照してください。「foreach」ループでは多次元配列を使用できます。詳細については、「example10」を参照してください。

3. 次のような IF ステートメントをテンプレートで使用します。

最初の使用法
[tplCode]
{if:$a == "hello"}
変数 $a の値は " hello "
{/if}
[/tplCode]

2 番目の使用法
[tplCode]
{if:$a == true}
変数 $a は true
{else}
変数 $a は true ではありません
{/if }
[/tplCode]

3番目の使用法
[tplCode]
{if:$a == 2}
変数$aの値は2です
{elseif:$a == 3}
Variable$ の値a は 3 です
{/if}
[/tplCode]
具体的な使用方法については、「example2」と「example6」を参照してください

4.
{tplCode}
{includetpl: などのテンプレート ファイルをテンプレートに含めます。 head.tpl}
{/tplCode}
テンプレート ファイル「head.tpl」がここに含まれます。含まれるテンプレート ファイルは、次のようなテンプレートに含める必要があります

5.
{includephp :head.php}
{/tplCode}
これには PHP ファイル「head.php」が含まれており、ファイル「head.php」は現在のプログラム ディレクトリにあります
含まれるファイルについては「example8」を参照してください

6. テンプレート内の時刻を次のように出力します。
{tplCode}
{date:Y-m-d H:i:s}
{/tplCode}
の後の "Y-m-d H:i:s" 文字列は、標準の PHP 時刻です。具体的な使用方法については、PHP マニュアルを参照してください
具体的な使用方法については、「example7」を参照してください

7. テンプレートで数学関数を使用します

最初の使用方法は、結果を直接出力することです
{tplCode}
{math: 3*2-5}
{/tplCode}

2 番目の使用方法、指定した変数に値を代入します
{tplCode}
{math:3*2-5,$result}
{/tplCode}

3 番目使用方法、指定した変数に値を代入、3 番目のパラメータで即時出力するかどうかを設定、「Y」出力に設定、「N」は出力しない
{tplCode}
{math:3*2-5,$result,Y}
{/tplCode}
具体的な使用法については、「example4」を参照してください

8. テンプレートでは、次のコードに示すように FOR ループ
を使用します
[tplCode]
{for:5,1000,1,$i}
{$i}

{/for}
{/tplCode}
パラメータの説明:
5: ループが 5 から始まることを示します
1000: ループが 1000 で終了することを示します
1: の増分を示します各ループは 1、$n++ に相当します
$i: 各ループの値が取得されることを示します
(上記の「5」。「1000」や「1」などの定数は、次のような変数に置き換えることもできます: {for:$num,$max,$step,$i}、変数は割り当てられた「assign()」メソッドを使用してプログラム内で使用されます)
次のコードも参照してください (理解のために):
[tplCode]
{対象:500,30,-2,$i}
ループを 500 から開始し、30 で終了するまで毎回 2 を減算します。現在のループ値は次のとおりです: {$i}

{/for}
{/tplCode}
具体的な使用法については、「example2」、「example11」を参照してください

9. テンプレートで Email タグを使用します
最初の使用法:
[tplCode]
{email:redhat@hnwj.net}
[/tplCode]
2 番目の使用法:
[tplCode]
{email:redhat@hnwj.net,Redhat のメール}
[/tplCode]
3 番目の使用法:
[tplCode]
{email:redhat@hnwj.net、これは「Redhat」ですメールアドレス<-dh->これはスタイル化されています<-dh->class=m,m}
[/tplCode]
具体的な使用法については「example5」を参照してください

10. テンプレートで変数を定義します
[tplCode] ]
{assign:$tplVar, これは私が定義した変数です <-dh-> はテンプレート内または PHP コードを使用して出力できます}
[/tplCode]
具体的な使用法については「example6」を参照してください

11. 他の構文と関数はまだ開発中です...
良いコメントやアイデアがある場合は、http://2002.buyionline.net/2002/gbook.php にアクセスしてバグを見つけてください。時間内にメッセージを残してください。ありがとうございます。



注:
1. このテンプレートは、複数層のネストされたテンプレートまたは PHP ファイルをサポートし、複数層の foreach または for ループをサポートします。
実際の使用中に $ 属性を変更した場合 cmpCheck が true に設定されている場合、PHP プログラムは実行されるたびにコンパイルされます。それ以外の場合、プログラムはコンパイルされた PHP ファイルの存在時間に基づいて再コンパイルするかどうかを決定します。この属性のデフォルト値は true で、使用時は通常 false に設定されます (速度を上げることができます)
次のようなメソッドを設定します: $tttObj->setCmpCheck(true); 最大の欠点 3.このプログラムの欠点は、プログラム内に表示される構文エラー情報を正確に取得できないことです。
4. キャッシュ機能は当面サポートされていません。何か良いアイデアがあれば、教えてください:-)
5.混合モードはテンプレートを PHP ファイルにコンパイルするために使用されるため、間違えないでください (もちろん、テンプレートは大文字と小文字の書き込みをサポートしています。つまり、{math:38*7} と {MatH:38) を記述することになります。 *7} も同様の効果があります)、「{foreach:$data,k,$v}」と入力するとコンパイルは成功しますが、「$」記号があるため、実行時に構文エラーが発生します。 「k」の前に欠落があります。エラーをキャッチするために各行を構文解析するコードをすでに作成しましたが、コードが数百行に達すると、時間がかかることがわかりました。コードが比較的小さい場合は、大丈夫です。しかし、多すぎるとパフォーマンスの低下につながります。そして、PHP 自体には非常に優れたエラー メッセージ プロンプトがあるのですが、コードの各行を分析していませんでした。上記のロゴでは、パラメーターに引用符や二重引用符がありません (条件判定ステートメントを除く)。それに注意してください:-)

4.

1. という名前の PHP ファイルを作成します。 php を現在のディレクトリ (つまり "./") に保存すると、内容は次のようになります:
require_once "./ttt/ttt.php";//クラス ファイルを導入します
$ttt = new TTT ();//3Tテンプレートクラスの初期化 Example
$ttt->setTplDir("./tpl/");//コンパイルが必要なテンプレートファイルが格納されているディレクトリ
$ttt->setCmpDir(". /cmp/");//コンパイル済みファイルの保存ディレクトリ
$ttt->assign('title', '空の色'); //変数を設定
$ttt->assign('content', '青、良い天気、雲ひとつない、晴れ') ;//変数を設定
$ttt->assign('foot','Welcome welcome');//変数を設定
$ttt->display('first.tpl ');//出力
?>

2. tpl ファイルを作成します (「first.tpl」という名前で、ディレクトリ「./tpl/」に保存されます)。




{$title} <br></head> <br><body> <br>{$content}<br> <br><br> <br>{$foot} <br></body> <br></html> <br><br>3 .ブラウザで http://domain/path/to/3tvx.x/3t/first.php を参照して、最初に PHP 実行環境を設定する必要があります。 <br>4. 他のサンプルを参照してください。プログラムに付属する「サンプル」シリーズ... <br>5. クラス属性 (部分) <br>$tplDir:String,"./tpl/" <br>テンプレート ファイルのディレクトリロードする必要のあるものはここからロードされます<br><br>$cmpDir: String,"./cmp/" <br>コンパイル済みPHPファイル格納ディレクトリ<br><br>$cheDir:String,"./che/" <br><br>$tplFile:String,"" <br>テンプレート ファイル、解析対象のメイン テンプレート ファイル<br><br> $startLeft:String,"{" <br>テンプレート変数の左境界記号は、setLeft(String $s) メソッドを通じて自分で設定できます<br><br>$startRight:String 、"}" <br>テンプレート変数の右境界記号は、setRight(String $s) メソッドを通じて自分で設定できます <br><br><br> 6. クラスメソッド (部分) <br>TTT(String|null) <br>クラス コンストラクター、直接設定できますここで解析が必要なテンプレート: $obj->TTT("head.tpl"); <br><br>setLeft(String) <br> テンプレート変数 "$startLeft" の左境界を設定します (デフォルトは "{" です) <br><br> setRight(String) <br>テンプレート変数 "$startRight" の左境界を設定します。デフォルトは "{" です。 <br><br>setTplDir(String) <br> テンプレートのストレージ パスを設定します。このメソッドの同じ名前は "setTemplatesFile() " <br><br>setCmpDir(String) <br> テンプレートのコンパイル後の保存パスを設定します。このメソッドの同じ名前は "setCompilesFile()" です。 <br><br>setCheFile(String) <br> キャッシュされたテンプレート ファイルのディレクトリを設定します。このメソッドの同じ名前は " setCachesFile()" <br><br>setCacheFilter(String| array) <br>テンプレートのキャッシュ機能を使用した場合、このメソッドで設定したファイルはキャッシュされません。 <br><br>setWordsFilter(array) <br>設定に適さない文字や文字列を設定$ttt->setWordsFilter ('abc','xyz'); のように Web サイトに表示します。Web ページ内のすべての "abc" を "xyz" に置き換えます <br><br>setWordsFile(String|array) <br>ウェブサイト上での表示に適さない文字や文字列がある場合は、このメソッドで設定したファイル内の文字や文字列が「setWordsFilter()」メソッドの影響を受けずにそのまま表示されます<br><br>setQuery(String)<br>このメソッドはテンプレートのキャッシュ機能を使用する場合にのみ使用されます。主に、キャッシュ ファイルが重複しないように固有の文字列を設定するために使用されます。設定しない場合、テンプレートは自動的に取得されますが、プログラムは安全ではありません。プログラムから異なるパラメータを取得し続ける限り、N 回後には常に異なるキャッシュ ファイルが生成されます。もちろん、これらはキャッシュ機能を使用したことによってのみ発生すると思います。このメソッドは一意の文字列を設定するために使用するものではないため、正しく設定し、プログラム内で GET または POST を処理します。このメソッドは "$ttt->setQuery("typeid=$tid&msgid) のように使用できます。 =$sid")"。ここで、悪意のあるユーザーが別の $tid または $sid を送信すると、上記の攻撃イベントが発生するため、不正な $tid と $sid をプログラムでキャプチャし、" の実行を停止する必要があります。 $ttt->display()」メソッド。 <br><br>assign(String,String|array) <br>次のように、最初のパラメータはテンプレートで使用される変数、2 番目のパラメータはユーザー定義の値です。 obj- >assign('webName','ホームページ名'); <br>$obj->assign('userID',array(23,37,12,18)); <br><br>display(String|null) <br>出力テンプレートの解析後、パラメーターは出力されるテンプレート ファイルの名前になります (クラスの初期化中またはメソッド「setTplFile()」を使用して設定されている場合は、パラメーターなしでこのメソッドを使用できます) <br><br><br> <br> </p> <p align="left"></p> <div style="display:none;">http://www.bkjia.com/PHPjc/313993.html<span id="url" itemprop="url"></span>www.bkjia.com<span id="indexUrl" itemprop="indexUrl"></span>tru​​e<span id="isOriginal" itemprop="isOriginal"></span>http://www.bkjia.com/PHPjc/313993.html<span id="isBasedOnUrl" itemprop="isBasedOnUrl"></span>技術記事<span id="genre" itemprop="genre"></span> 1. はじめに 現在、WEB アプリケーションを開発する場合、最も一般的な方法の 1 つは、「MVC」構造を使用して WEB アプリケーションを開発することです。 <span id="description" itemprop="description"></span> </div> </div> </div> <div class="wzconShengming_sp"> <div class="bzsmdiv_sp">このウェブサイトの声明</div> <div>この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。</div> </div> </div> <ins class="adsbygoogle" style="display:block" data-ad-format="autorelaxed" data-ad-client="ca-pub-5902227090019525" data-ad-slot="2507867629"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> <div class="AI_ToolDetails_main4sR"> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5902227090019525" data-ad-slot="3653428331" data-ad-format="auto" data-full-width-responsive="true"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> <!-- <div class="phpgenera_Details_mainR4"> <div class="phpmain1_4R_readrank"> <div class="phpmain1_4R_readrank_top"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/hotarticle2.png" alt="" /> <h2>人気の記事</h2> </div> <div class="phpgenera_Details_mainR4_bottom"> <div class="phpgenera_Details_mainR4_bottoms"> <a href="https://www.php.cn/ja/faq/1796780570.html" title="R.E.P.O.説明されたエネルギー結晶と彼らが何をするか(黄色のクリスタル)" class="phpgenera_Details_mainR4_bottom_title">R.E.P.O.説明されたエネルギー結晶と彼らが何をするか(黄色のクリスタル)</a> <div class="phpgenera_Details_mainR4_bottoms_info"> <span>1 か月前</span> <span>By 尊渡假赌尊渡假赌尊渡假赌</span> </div> </div> <div class="phpgenera_Details_mainR4_bottoms"> <a href="https://www.php.cn/ja/faq/1796780641.html" title="R.E.P.O.最高のグラフィック設定" class="phpgenera_Details_mainR4_bottom_title">R.E.P.O.最高のグラフィック設定</a> <div class="phpgenera_Details_mainR4_bottoms_info"> <span>1 か月前</span> <span>By 尊渡假赌尊渡假赌尊渡假赌</span> </div> </div> <div class="phpgenera_Details_mainR4_bottoms"> <a href="https://www.php.cn/ja/faq/1796785841.html" title="アサシンのクリードシャドウズ:シーシェルリドルソリューション" class="phpgenera_Details_mainR4_bottom_title">アサシンのクリードシャドウズ:シーシェルリドルソリューション</a> <div class="phpgenera_Details_mainR4_bottoms_info"> <span>3週間前</span> <span>By DDD</span> </div> </div> <div class="phpgenera_Details_mainR4_bottoms"> <a href="https://www.php.cn/ja/faq/1796789525.html" title="Windows11 KB5054979の新しいものと更新の問題を修正する方法" class="phpgenera_Details_mainR4_bottom_title">Windows11 KB5054979の新しいものと更新の問題を修正する方法</a> <div class="phpgenera_Details_mainR4_bottoms_info"> <span>2週間前</span> <span>By DDD</span> </div> </div> <div class="phpgenera_Details_mainR4_bottoms"> <a href="https://www.php.cn/ja/faq/1796780618.html" title="Will R.E.P.O.クロスプレイがありますか?" class="phpgenera_Details_mainR4_bottom_title">Will R.E.P.O.クロスプレイがありますか?</a> <div class="phpgenera_Details_mainR4_bottoms_info"> <span>1 か月前</span> <span>By 尊渡假赌尊渡假赌尊渡假赌</span> </div> </div> </div> <div class="phpgenera_Details_mainR3_more"> <a href="https://www.php.cn/ja/article.html">もっと見る</a> </div> </div> </div> --> <div class="phpgenera_Details_mainR3"> <div class="phpmain1_4R_readrank"> <div class="phpmain1_4R_readrank_top"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/hottools2.png" alt="" /> <h2>ホットAIツール</h2> </div> <div class="phpgenera_Details_mainR3_bottom"> <div class="phpmain_tab2_mids_top"> <a href="https://www.php.cn/ja/ai/undresserai-undress" title="Undresser.AI Undress" class="phpmain_tab2_mids_top_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" class="lazy" data-src="https://img.php.cn/upload/ai_manual/001/246/273/173411540686492.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="Undresser.AI Undress" /> </a> <div class="phpmain_tab2_mids_info"> <a href="https://www.php.cn/ja/ai/undresserai-undress" title="Undresser.AI Undress" class="phpmain_tab2_mids_title"> <h3>Undresser.AI Undress</h3> </a> <p>リアルなヌード写真を作成する AI 搭載アプリ</p> </div> </div> <div class="phpmain_tab2_mids_top"> <a href="https://www.php.cn/ja/ai/ai-clothes-remover" title="AI Clothes Remover" class="phpmain_tab2_mids_top_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" class="lazy" data-src="https://img.php.cn/upload/ai_manual/001/246/273/173411552797167.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="AI Clothes Remover" /> </a> <div class="phpmain_tab2_mids_info"> <a href="https://www.php.cn/ja/ai/ai-clothes-remover" title="AI Clothes Remover" class="phpmain_tab2_mids_title"> <h3>AI Clothes Remover</h3> </a> <p>写真から衣服を削除するオンライン AI ツール。</p> </div> </div> <div class="phpmain_tab2_mids_top"> <a href="https://www.php.cn/ja/ai/undress-ai-tool" title="Undress AI Tool" class="phpmain_tab2_mids_top_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" class="lazy" data-src="https://img.php.cn/upload/ai_manual/001/246/273/173410641626608.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="Undress AI Tool" /> </a> <div class="phpmain_tab2_mids_info"> <a href="https://www.php.cn/ja/ai/undress-ai-tool" title="Undress AI Tool" class="phpmain_tab2_mids_title"> <h3>Undress AI Tool</h3> </a> <p>脱衣画像を無料で</p> </div> </div> <div class="phpmain_tab2_mids_top"> <a href="https://www.php.cn/ja/ai/clothoffio" title="Clothoff.io" class="phpmain_tab2_mids_top_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" class="lazy" data-src="https://img.php.cn/upload/ai_manual/001/246/273/173411529149311.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="Clothoff.io" /> </a> <div class="phpmain_tab2_mids_info"> <a href="https://www.php.cn/ja/ai/clothoffio" title="Clothoff.io" class="phpmain_tab2_mids_title"> <h3>Clothoff.io</h3> </a> <p>AI衣類リムーバー</p> </div> </div> <div class="phpmain_tab2_mids_top"> <a href="https://www.php.cn/ja/ai/ai-hentai-generator" title="AI Hentai Generator" class="phpmain_tab2_mids_top_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" class="lazy" data-src="https://img.php.cn/upload/ai_manual/001/246/273/173405034393877.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="AI Hentai Generator" /> </a> <div class="phpmain_tab2_mids_info"> <a href="https://www.php.cn/ja/ai/ai-hentai-generator" title="AI Hentai Generator" class="phpmain_tab2_mids_title"> <h3>AI Hentai Generator</h3> </a> <p>AIヘンタイを無料で生成します。</p> </div> </div> </div> <div class="phpgenera_Details_mainR3_more"> <a href="https://www.php.cn/ja/ai">もっと見る</a> </div> </div> </div> <script src="https://sw.php.cn/hezuo/cac1399ab368127f9b113b14eb3316d0.js" type="text/javascript"></script> <div class="phpgenera_Details_mainR4"> <div class="phpmain1_4R_readrank"> <div class="phpmain1_4R_readrank_top"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/hotarticle2.png" alt="" /> <h2>人気の記事</h2> </div> <div class="phpgenera_Details_mainR4_bottom"> <div class="phpgenera_Details_mainR4_bottoms"> <a href="https://www.php.cn/ja/faq/1796780570.html" title="R.E.P.O.説明されたエネルギー結晶と彼らが何をするか(黄色のクリスタル)" class="phpgenera_Details_mainR4_bottom_title">R.E.P.O.説明されたエネルギー結晶と彼らが何をするか(黄色のクリスタル)</a> <div class="phpgenera_Details_mainR4_bottoms_info"> <span>1 か月前</span> <span>By 尊渡假赌尊渡假赌尊渡假赌</span> </div> </div> <div class="phpgenera_Details_mainR4_bottoms"> <a href="https://www.php.cn/ja/faq/1796780641.html" title="R.E.P.O.最高のグラフィック設定" class="phpgenera_Details_mainR4_bottom_title">R.E.P.O.最高のグラフィック設定</a> <div class="phpgenera_Details_mainR4_bottoms_info"> <span>1 か月前</span> <span>By 尊渡假赌尊渡假赌尊渡假赌</span> </div> </div> <div class="phpgenera_Details_mainR4_bottoms"> <a href="https://www.php.cn/ja/faq/1796785841.html" title="アサシンのクリードシャドウズ:シーシェルリドルソリューション" class="phpgenera_Details_mainR4_bottom_title">アサシンのクリードシャドウズ:シーシェルリドルソリューション</a> <div class="phpgenera_Details_mainR4_bottoms_info"> <span>3週間前</span> <span>By DDD</span> </div> </div> <div class="phpgenera_Details_mainR4_bottoms"> <a href="https://www.php.cn/ja/faq/1796789525.html" title="Windows11 KB5054979の新しいものと更新の問題を修正する方法" class="phpgenera_Details_mainR4_bottom_title">Windows11 KB5054979の新しいものと更新の問題を修正する方法</a> <div class="phpgenera_Details_mainR4_bottoms_info"> <span>2週間前</span> <span>By DDD</span> </div> </div> <div class="phpgenera_Details_mainR4_bottoms"> <a href="https://www.php.cn/ja/faq/1796780618.html" title="Will R.E.P.O.クロスプレイがありますか?" class="phpgenera_Details_mainR4_bottom_title">Will R.E.P.O.クロスプレイがありますか?</a> <div class="phpgenera_Details_mainR4_bottoms_info"> <span>1 か月前</span> <span>By 尊渡假赌尊渡假赌尊渡假赌</span> </div> </div> </div> <div class="phpgenera_Details_mainR3_more"> <a href="https://www.php.cn/ja/article.html">もっと見る</a> </div> </div> </div> <div class="phpgenera_Details_mainR3"> <div class="phpmain1_4R_readrank"> <div class="phpmain1_4R_readrank_top"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/hottools2.png" alt="" /> <h2>ホットツール</h2> </div> <div class="phpgenera_Details_mainR3_bottom"> <div class="phpmain_tab2_mids_top"> <a href="https://www.php.cn/ja/toolset/development-tools/92" title="メモ帳++7.3.1" class="phpmain_tab2_mids_top_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" class="lazy" data-src="https://img.php.cn/upload/manual/000/000/001/58ab96f0f39f7357.jpg?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="メモ帳++7.3.1" /> </a> <div class="phpmain_tab2_mids_info"> <a href="https://www.php.cn/ja/toolset/development-tools/92" title="メモ帳++7.3.1" class="phpmain_tab2_mids_title"> <h3>メモ帳++7.3.1</h3> </a> <p>使いやすく無料のコードエディター</p> </div> </div> <div class="phpmain_tab2_mids_top"> <a href="https://www.php.cn/ja/toolset/development-tools/93" title="SublimeText3 中国語版" class="phpmain_tab2_mids_top_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" class="lazy" data-src="https://img.php.cn/upload/manual/000/000/001/58ab97a3baad9677.jpg?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="SublimeText3 中国語版" /> </a> <div class="phpmain_tab2_mids_info"> <a href="https://www.php.cn/ja/toolset/development-tools/93" title="SublimeText3 中国語版" class="phpmain_tab2_mids_title"> <h3>SublimeText3 中国語版</h3> </a> <p>中国語版、とても使いやすい</p> </div> </div> <div class="phpmain_tab2_mids_top"> <a href="https://www.php.cn/ja/toolset/development-tools/121" title="ゼンドスタジオ 13.0.1" class="phpmain_tab2_mids_top_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" class="lazy" data-src="https://img.php.cn/upload/manual/000/000/001/58ab97ecd1ab2670.jpg?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="ゼンドスタジオ 13.0.1" /> </a> <div class="phpmain_tab2_mids_info"> <a href="https://www.php.cn/ja/toolset/development-tools/121" title="ゼンドスタジオ 13.0.1" class="phpmain_tab2_mids_title"> <h3>ゼンドスタジオ 13.0.1</h3> </a> <p>強力な PHP 統合開発環境</p> </div> </div> <div class="phpmain_tab2_mids_top"> <a href="https://www.php.cn/ja/toolset/development-tools/469" title="ドリームウィーバー CS6" class="phpmain_tab2_mids_top_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" class="lazy" data-src="https://img.php.cn/upload/manual/000/000/001/58d0e0fc74683535.jpg?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="ドリームウィーバー CS6" /> </a> <div class="phpmain_tab2_mids_info"> <a href="https://www.php.cn/ja/toolset/development-tools/469" title="ドリームウィーバー CS6" class="phpmain_tab2_mids_title"> <h3>ドリームウィーバー CS6</h3> </a> <p>ビジュアル Web 開発ツール</p> </div> </div> <div class="phpmain_tab2_mids_top"> <a href="https://www.php.cn/ja/toolset/development-tools/500" title="SublimeText3 Mac版" class="phpmain_tab2_mids_top_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" class="lazy" data-src="https://img.php.cn/upload/manual/000/000/001/58d34035e2757995.png?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="SublimeText3 Mac版" /> </a> <div class="phpmain_tab2_mids_info"> <a href="https://www.php.cn/ja/toolset/development-tools/500" title="SublimeText3 Mac版" class="phpmain_tab2_mids_title"> <h3>SublimeText3 Mac版</h3> </a> <p>神レベルのコード編集ソフト(SublimeText3)</p> </div> </div> </div> <div class="phpgenera_Details_mainR3_more"> <a href="https://www.php.cn/ja/ai">もっと見る</a> </div> </div> </div> <div class="phpgenera_Details_mainR4"> <div class="phpmain1_4R_readrank"> <div class="phpmain1_4R_readrank_top"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/hotarticle2.png" alt="" /> <h2>ホットトピック</h2> </div> <div class="phpgenera_Details_mainR4_bottom"> <div class="phpgenera_Details_mainR4_bottoms"> <a href="https://www.php.cn/ja/faq/gmailyxdlrkzn" title="Gmailメールのログイン入り口はどこですか?" class="phpgenera_Details_mainR4_bottom_title">Gmailメールのログイン入り口はどこですか?</a> <div class="phpgenera_Details_mainR4_bottoms_info"> <div class="phpgenera_Details_mainR4_bottoms_infos"> <img src="/static/imghw/eyess.png" alt="" /> <span>7555</span> </div> <div class="phpgenera_Details_mainR4_bottoms_infos"> <img src="/static/imghw/tiezi.png" alt="" /> <span>15</span> </div> </div> </div> <div class="phpgenera_Details_mainR4_bottoms"> <a href="https://www.php.cn/ja/faq/cakephp-tutor" title="CakePHP チュートリアル" class="phpgenera_Details_mainR4_bottom_title">CakePHP チュートリアル</a> <div class="phpgenera_Details_mainR4_bottoms_info"> <div class="phpgenera_Details_mainR4_bottoms_infos"> <img src="/static/imghw/eyess.png" alt="" /> <span>1384</span> </div> <div class="phpgenera_Details_mainR4_bottoms_infos"> <img src="/static/imghw/tiezi.png" alt="" /> <span>52</span> </div> </div> </div> <div class="phpgenera_Details_mainR4_bottoms"> <a href="https://www.php.cn/ja/faq/steamdzhmcssmgs" title="Steamのアカウント名の形式は何ですか" class="phpgenera_Details_mainR4_bottom_title">Steamのアカウント名の形式は何ですか</a> <div class="phpgenera_Details_mainR4_bottoms_info"> <div class="phpgenera_Details_mainR4_bottoms_infos"> <img src="/static/imghw/eyess.png" alt="" /> <span>83</span> </div> <div class="phpgenera_Details_mainR4_bottoms_infos"> <img src="/static/imghw/tiezi.png" alt="" /> <span>11</span> </div> </div> </div> <div class="phpgenera_Details_mainR4_bottoms"> <a href="https://www.php.cn/ja/faq/winactivationkeyper" title="Win11 Activation Key Permanent" class="phpgenera_Details_mainR4_bottom_title">Win11 Activation Key Permanent</a> <div class="phpgenera_Details_mainR4_bottoms_info"> <div class="phpgenera_Details_mainR4_bottoms_infos"> <img src="/static/imghw/eyess.png" alt="" /> <span>59</span> </div> <div class="phpgenera_Details_mainR4_bottoms_infos"> <img src="/static/imghw/tiezi.png" alt="" /> <span>19</span> </div> </div> </div> <div class="phpgenera_Details_mainR4_bottoms"> <a href="https://www.php.cn/ja/faq/newyorktimesdailybrief" title="NYTの接続はヒントと回答です" class="phpgenera_Details_mainR4_bottom_title">NYTの接続はヒントと回答です</a> <div class="phpgenera_Details_mainR4_bottoms_info"> <div class="phpgenera_Details_mainR4_bottoms_infos"> <img src="/static/imghw/eyess.png" alt="" /> <span>28</span> </div> <div class="phpgenera_Details_mainR4_bottoms_infos"> <img src="/static/imghw/tiezi.png" alt="" /> <span>96</span> </div> </div> </div> </div> <div class="phpgenera_Details_mainR3_more"> <a href="https://www.php.cn/ja/faq/zt">もっと見る</a> </div> </div> </div> </div> </div> <div class="Article_Details_main2"> <div class="phpgenera_Details_mainL4"> <div class="phpmain1_2_top"> <a href="javascript:void(0);" class="phpmain1_2_top_title">Related knowledge<img src="/static/imghw/index2_title2.png" alt="" /></a> </div> <div class="phpgenera_Details_mainL4_info"> <div class="phphistorical_Version2_mids"> <a href="https://www.php.cn/ja/faq/759215.html" title="おすすめのAI支援プログラミングツール4選" class="phphistorical_Version2_mids_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/default1.png" class="lazy" data-src="https://img.php.cn/upload/article/000/465/014/171377845990861.png?x-oss-process=image/resize,m_fill,h_207,w_330" alt="おすすめのAI支援プログラミングツール4選" /> </a> <a href="https://www.php.cn/ja/faq/759215.html" title="おすすめのAI支援プログラミングツール4選" class="phphistorical_Version2_mids_title">おすすめのAI支援プログラミングツール4選</a> <span class="Articlelist_txts_time">Apr 22, 2024 pm 05:34 PM</span> <p class="Articlelist_txts_p">この AI 支援プログラミング ツールは、急速な AI 開発のこの段階において、多数の有用な AI 支援プログラミング ツールを発掘しました。 AI 支援プログラミング ツールは、開発効率を向上させ、コードの品質を向上させ、バグ率を減らすことができます。これらは、現代のソフトウェア開発プロセスにおける重要なアシスタントです。今日は Dayao が 4 つの AI 支援プログラミング ツールを紹介します (すべて C# 言語をサポートしています)。皆さんのお役に立てれば幸いです。 https://github.com/YSGStudyHards/DotNetGuide1.GitHubCopilotGitHubCopilot は、より少ない労力でより迅速にコードを作成できるようにする AI コーディング アシスタントであり、問​​題解決とコラボレーションにより集中できるようになります。ギット</p> </div> <div class="phphistorical_Version2_mids"> <a href="https://www.php.cn/ja/faq/737083.html" title="どのAIプログラマーが一番優れているでしょうか? Devin、Tongyi Lingma、SWE エージェントの可能性を探る" class="phphistorical_Version2_mids_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/default1.png" class="lazy" data-src="https://img.php.cn/upload/article/000/000/164/171245220919615.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="どのAIプログラマーが一番優れているでしょうか? Devin、Tongyi Lingma、SWE エージェントの可能性を探る" /> </a> <a href="https://www.php.cn/ja/faq/737083.html" title="どのAIプログラマーが一番優れているでしょうか? Devin、Tongyi Lingma、SWE エージェントの可能性を探る" class="phphistorical_Version2_mids_title">どのAIプログラマーが一番優れているでしょうか? Devin、Tongyi Lingma、SWE エージェントの可能性を探る</a> <span class="Articlelist_txts_time">Apr 07, 2024 am 09:10 AM</span> <p class="Articlelist_txts_p">世界初の AI プログラマー Devin の誕生から 1 か月も経たない 2022 年 3 月 3 日、プリンストン大学の NLP チームはオープンソース AI プログラマー SWE-agent を開発しました。 GPT-4 モデルを利用して、GitHub リポジトリの問題を自動的に解決します。 SWE ベンチ テスト セットにおける SWE エージェントのパフォーマンスは Devin と同様で、平均 93 秒かかり、問題の 12.29% を解決しました。専用端末と対話することで、SWE エージェントはファイルの内容を開いて検索したり、自動構文チェックを使用したり、特定の行を編集したり、テストを作成して実行したりできます。 (注: 上記の内容は元の内容を若干調整したものですが、原文の重要な情報は保持されており、指定された文字数制限を超えていません。) SWE-A</p> </div> <div class="phphistorical_Version2_mids"> <a href="https://www.php.cn/ja/faq/727949.html" title="Go 言語を使用してモバイル アプリケーションを開発する方法を学ぶ" class="phphistorical_Version2_mids_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/default1.png" class="lazy" data-src="https://img.php.cn/upload/article/000/465/014/171163440553659.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="Go 言語を使用してモバイル アプリケーションを開発する方法を学ぶ" /> </a> <a href="https://www.php.cn/ja/faq/727949.html" title="Go 言語を使用してモバイル アプリケーションを開発する方法を学ぶ" class="phphistorical_Version2_mids_title">Go 言語を使用してモバイル アプリケーションを開発する方法を学ぶ</a> <span class="Articlelist_txts_time">Mar 28, 2024 pm 10:00 PM</span> <p class="Articlelist_txts_p">Go 言語開発モバイル アプリケーション チュートリアル モバイル アプリケーション市場が活況を続ける中、ますます多くの開発者が Go 言語を使用してモバイル アプリケーションを開発する方法を検討し始めています。シンプルで効率的なプログラミング言語として、Go 言語はモバイル アプリケーション開発でも大きな可能性を示しています。この記事では、Go 言語を使用してモバイル アプリケーションを開発する方法を詳しく紹介し、読者がすぐに始めて独自のモバイル アプリケーションの開発を開始できるように、具体的なコード例を添付します。 1. 準備 始める前に、開発環境とツールを準備する必要があります。頭</p> </div> <div class="phphistorical_Version2_mids"> <a href="https://www.php.cn/ja/faq/720885.html" title="TrendX Research Institute: Merlin Chain プロジェクトの分析と生態学的インベントリ" class="phphistorical_Version2_mids_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/default1.png" class="lazy" data-src="https://img.php.cn/upload/article/000/465/014/171124209613242.png?x-oss-process=image/resize,m_fill,h_207,w_330" alt="TrendX Research Institute: Merlin Chain プロジェクトの分析と生態学的インベントリ" /> </a> <a href="https://www.php.cn/ja/faq/720885.html" title="TrendX Research Institute: Merlin Chain プロジェクトの分析と生態学的インベントリ" class="phphistorical_Version2_mids_title">TrendX Research Institute: Merlin Chain プロジェクトの分析と生態学的インベントリ</a> <span class="Articlelist_txts_time">Mar 24, 2024 am 09:01 AM</span> <p class="Articlelist_txts_p">3月2日の統計によると、ビットコインの第2層ネットワークMerlinChainのTVL総額は30億米ドルに達した。このうち、ビットコイン環境資産は90.83%を占め、15億9600万米ドル相当のBTCと4億400万米ドル相当のBRC-20資産が含まれている。先月、マーリンチェーンの合計 TVL はステーキング活動の開始から 14 日以内に 19 億 7,000 万米ドルに達し、昨年 11 月に開始され、同じく最新で同様に目を引くブラストを上回りました。 2月26日、MerlinChainエコシステムにおけるNFTの総額は4億2,000万米ドルを超え、イーサリアムに次いでNFT市場価値が最も高いパブリックチェーンプロジェクトとなった。プロジェクトの紹介 MerlinChain は OKX サポートです</p> </div> <div class="phphistorical_Version2_mids"> <a href="https://www.php.cn/ja/faq/721977.html" title="VSCode について: このツールは何に使用されますか?" class="phphistorical_Version2_mids_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/default1.png" class="lazy" data-src="https://img.php.cn/upload/article/000/000/164/171135036430960.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="VSCode について: このツールは何に使用されますか?" /> </a> <a href="https://www.php.cn/ja/faq/721977.html" title="VSCode について: このツールは何に使用されますか?" class="phphistorical_Version2_mids_title">VSCode について: このツールは何に使用されますか?</a> <span class="Articlelist_txts_time">Mar 25, 2024 pm 03:06 PM</span> <p class="Articlelist_txts_p">「VSCode について: このツールは何に使用されますか?」 》初心者でも経験豊富な開発者でも、プログラマーとしてはコード編集ツールを使わずにはいられません。数ある編集ツールの中でも、Visual Studio Code (略して VSCode) は、オープンソースで軽量かつ強力なコード エディターとして開発者の間で非常に人気があります。では、VSCode は正確に何に使用されるのでしょうか?この記事では、VSCode の機能と使用法を詳しく説明し、読者に役立つ具体的なコード例を提供します。</p> </div> <div class="phphistorical_Version2_mids"> <a href="https://www.php.cn/ja/faq/726731.html" title="Go 言語のフロントエンド テクノロジーの探求: フロントエンド開発の新しいビジョン" class="phphistorical_Version2_mids_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/default1.png" class="lazy" data-src="https://img.php.cn/upload/article/000/887/227/171160236567885.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="Go 言語のフロントエンド テクノロジーの探求: フロントエンド開発の新しいビジョン" /> </a> <a href="https://www.php.cn/ja/faq/726731.html" title="Go 言語のフロントエンド テクノロジーの探求: フロントエンド開発の新しいビジョン" class="phphistorical_Version2_mids_title">Go 言語のフロントエンド テクノロジーの探求: フロントエンド開発の新しいビジョン</a> <span class="Articlelist_txts_time">Mar 28, 2024 pm 01:06 PM</span> <p class="Articlelist_txts_p">Go 言語は、高速で効率的なプログラミング言語として、バックエンド開発の分野で広く普及しています。ただし、Go 言語をフロントエンド開発と結びつける人はほとんどいません。実際、フロントエンド開発に Go 言語を使用すると、効率が向上するだけでなく、開発者に新たな視野をもたらすことができます。この記事では、フロントエンド開発に Go 言語を使用する可能性を探り、読者がこの分野をよりよく理解できるように具体的なコード例を示します。従来のフロントエンド開発では、ユーザー インターフェイスの構築に JavaScript、HTML、CSS がよく使用されます。</p> </div> <div class="phphistorical_Version2_mids"> <a href="https://www.php.cn/ja/faq/731630.html" title="ドージコインとは" class="phphistorical_Version2_mids_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/default1.png" class="lazy" data-src="https://img.php.cn/upload/article/000/887/227/171196118160114.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="ドージコインとは" /> </a> <a href="https://www.php.cn/ja/faq/731630.html" title="ドージコインとは" class="phphistorical_Version2_mids_title">ドージコインとは</a> <span class="Articlelist_txts_time">Apr 01, 2024 pm 04:46 PM</span> <p class="Articlelist_txts_p">Dogecoin は、インターネット ミームに基づいて作成された暗号通貨であり、固定供給上限がなく、速い取引時間、低い取引手数料、そして大規模なミーム コミュニティを備えています。用途には、少額の取引、チップ、慈善寄付が含まれます。しかし、その無限の供給、市場のボラティリティ、ジョークコインとしての地位は、リスクと懸念ももたらします。ドージコインとは何ですか? Dogecoin は、インターネットのミームやジョークに基づいて作成された暗号通貨です。起源と歴史: Dogecoin は、2 人のソフトウェア エンジニア、ビリー マーカスとジャクソン パーマーによって 2013 年 12 月に作成されました。当時人気だった「Doge」ミームからインスピレーションを得た、片言の英語を話す柴犬をフィーチャーしたコミカルな写真。特徴と利点: 無制限の供給: ビットコインなどの他の暗号通貨とは異なります。</p> </div> <div class="phphistorical_Version2_mids"> <a href="https://www.php.cn/ja/faq/1796507293.html" title="Samsung S24aiの機能を詳しく紹介" class="phphistorical_Version2_mids_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/default1.png" class="lazy" data-src="https://img.php.cn/upload/article/000/887/227/171919914637743.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="Samsung S24aiの機能を詳しく紹介" /> </a> <a href="https://www.php.cn/ja/faq/1796507293.html" title="Samsung S24aiの機能を詳しく紹介" class="phphistorical_Version2_mids_title">Samsung S24aiの機能を詳しく紹介</a> <span class="Articlelist_txts_time">Jun 24, 2024 am 11:18 AM</span> <p class="Articlelist_txts_p">2024 年は AI 携帯電話元年です。AI スマート テクノロジーにより、携帯電話はますます効率的かつ便利に使用できるようになります。最近、今年の初めにリリースされたGalaxy S24シリーズは、生成AIエクスペリエンスを再び改善しました。以下で詳細な機能の紹介を見てみましょう。 1. 生成 AI は Samsung Galaxy S24 シリーズを強力に強化します。Galaxy S24 シリーズは、Galaxy AI によって強化され、多くのインテリジェント アプリケーションをもたらします。これらの機能は Samsung One UI6.1 と緊密に統合されており、ユーザーはいつでも便利なインテリジェントなエクスペリエンスを得ることができ、パフォーマンスが大幅に向上します。携帯電話の効率と使いやすさ。 Galaxy S24 シリーズで先駆けて開発されたサークルアンド検索機能は、長押しするだけで実現できる機能です。</p> </div> </div> <a href="https://www.php.cn/ja/be/" class="phpgenera_Details_mainL4_botton"> <span>See all articles</span> <img src="/static/imghw/down_right.png" alt="" /> </a> </div> </div> </div> </main> <footer> <div class="footer"> <div class="footertop"> <img src="/static/imghw/logo.png" alt=""> <p>福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!</p> </div> <div class="footermid"> <a href="https://www.php.cn/ja/about/us.html">私たちについて</a> <a href="https://www.php.cn/ja/about/disclaimer.html">免責事項</a> <a href="https://www.php.cn/ja/update/article_0_1.html">Sitemap</a> </div> <div class="footerbottom"> <p> © php.cn All rights reserved </p> </div> </div> </footer> <input type="hidden" id="verifycode" value="/captcha.html"> <script>layui.use(['element', 'carousel'], function () {var element = layui.element;$ = layui.jquery;var carousel = layui.carousel;carousel.render({elem: '#test1', width: '100%', height: '330px', arrow: 'always'});$.getScript('/static/js/jquery.lazyload.min.js', function () {$("img").lazyload({placeholder: "/static/images/load.jpg", effect: "fadeIn", threshold: 200, skip_invisible: false});});});</script> <script src="/static/js/common_new.js"></script> <script type="text/javascript" src="/static/js/jquery.cookie.js?1744967459"></script> <script src="https://vdse.bdstatic.com//search-video.v1.min.js"></script> <link rel='stylesheet' id='_main-css' href='/static/css/viewer.min.css?2' type='text/css' media='all' /> <script type='text/javascript' src='/static/js/viewer.min.js?1'></script> <script type='text/javascript' src='/static/js/jquery-viewer.min.js'></script> <script type="text/javascript" src="/static/js/global.min.js?5.5.53"></script> <script> var _paq = window._paq = window._paq || []; /* tracker methods like "setCustomDimension" should be called before "trackPageView" */ _paq.push(['trackPageView']); _paq.push(['enableLinkTracking']); (function () { var u = "https://tongji.php.cn/"; _paq.push(['setTrackerUrl', u + 'matomo.php']); _paq.push(['setSiteId', '9']); var d = document, g = d.createElement('script'), s = d.getElementsByTagName('script')[0]; g.async = true; g.src = u + 'matomo.js'; s.parentNode.insertBefore(g, s); })(); </script> <script> // top layui.use(function () { var util = layui.util; util.fixbar({ on: { mouseenter: function (type) { layer.tips(type, this, { tips: 4, fixed: true, }); }, mouseleave: function (type) { layer.closeAll("tips"); }, }, }); }); document.addEventListener("DOMContentLoaded", (event) => { // 定义一个函数来处理滚动链接的点击事件 function setupScrollLink(scrollLinkId, targetElementId) { const scrollLink = document.getElementById(scrollLinkId); const targetElement = document.getElementById(targetElementId); if (scrollLink && targetElement) { scrollLink.addEventListener("click", (e) => { e.preventDefault(); // 阻止默认链接行为 targetElement.scrollIntoView({ behavior: "smooth" }); // 平滑滚动到目标元素 }); } else { console.warn( `Either scroll link with ID '${scrollLinkId}' or target element with ID '${targetElementId}' not found.` ); } } // 使用该函数设置多个滚动链接 setupScrollLink("Article_Details_main1L2s_1", "article_main_title1"); setupScrollLink("Article_Details_main1L2s_2", "article_main_title2"); setupScrollLink("Article_Details_main1L2s_3", "article_main_title3"); setupScrollLink("Article_Details_main1L2s_4", "article_main_title4"); setupScrollLink("Article_Details_main1L2s_5", "article_main_title5"); setupScrollLink("Article_Details_main1L2s_6", "article_main_title6"); // 可以继续添加更多的滚动链接设置 }); window.addEventListener("scroll", function () { var fixedElement = document.getElementById("Article_Details_main1Lmain"); var scrollTop = window.scrollY || document.documentElement.scrollTop; // 兼容不同浏览器 var clientHeight = window.innerHeight || document.documentElement.clientHeight; // 视口高度 var scrollHeight = document.documentElement.scrollHeight; // 页面总高度 // 计算距离底部的距离 var distanceToBottom = scrollHeight - scrollTop - clientHeight; // 当距离底部小于或等于300px时,取消固定定位 if (distanceToBottom <= 980) { fixedElement.classList.remove("Article_Details_main1Lmain"); fixedElement.classList.add("Article_Details_main1Lmain_relative"); } else { // 否则,保持固定定位 fixedElement.classList.remove("Article_Details_main1Lmain_relative"); fixedElement.classList.add("Article_Details_main1Lmain"); } }); </script> </body> </html>