ホームページ > php教程 > php手册 > PHP チュートリアル: 初心者向けに学習する価値のあるいくつかの PHP コード スニペット

PHP チュートリアル: 初心者向けに学習する価値のあるいくつかの PHP コード スニペット

WBOY
リリース: 2016-06-21 08:56:42
オリジナル
1001 人が閲覧しました

クラシック ループの例



クラシック ループの例

< ; BODY>
for($counter = 1; $counter <= 6; $counter++) //6回ループ
{
print("counter is $ counter
>
for の高度な使用法


for

< ;BODY>
/*
** 必要な説明テキストを出力します
*/
print("月曜日まであと何日ですか?n");
print("

    n");
    for($currentDate = date("U"); //$currentDate の時刻形式を定義します
    date("l" , $currentDate) != "Monday"; // 現在のシステム時間が月曜日かどうかを判断します
    $currentDate += (60 * 60 * 24)) // 現在の時刻に 1 日を加えた値
    {
    / *
    ** 時刻名を表示
    */
    print("
  1. " . date("l", $currentDate) . "n");
    }

    print("
n");
?>



関数の単純な呼び出し:



簡単な関数


function printBold($inputText) //関数 printBold()
{
print("" . $inputText . " ;") ; ////Print $inputText
}
print("この行は強調されていません!
n"); 🎜>
戻り値のある関数


戻り値のある関数</ TITLE><br>< ;/HEAD><br><BODY><br><FONT SIZE=5><br><?<br/> function makeBold($inputText) //関数を定義 makeBold() function <br/> {<br/> $boldedText = "<B>";<br/> $boldedText .= $inputText;<br/> $boldedText .= "</B>";<br/> return($boldedText) ; //Return Variable$ balledText<br/> }<br/> print("この行は強調されていません!!!<BR>n") //文字列を直接出力します <br/> print(makeBold("この行は強調されません)強調されました!!!") . "<BR>n"); //関数 makeBold() を呼び出します function <br/> print("この行は強調されていません!!!<BR>n"); //印刷文字列を直接 <br/>?> ;<br/></SIZE><br></BODY><br></HTML><br><br>デフォルトパラメータを持つ関数<br><HTML> <br><HEAD> <br><TITLE>デフォルトパラメータを持つ関数



function printColored($Text, $Color="black") //関数を定義 function
{
print("$Text"); //文字列の内容と色を取得します
}
printColored("これは黒い単語です!" ;
print("
n");
?>




整数かどうかを判定するアルゴリズム



整数かどうか判定
< /HEAD>

function checkInteger($Number)
{
if($Number > 1)
{
整数のマイナス1 はまだ整数です* /
return(checkInteger($Number-1));
}
elseif($Number <0)
🎜> /* 絶対値を分析できます*/
Return (Checkinteger ((-1)*$ Number-1)); // 絶対値を取得し、整数分析に従って負の数値を分析します
}
Else
{{ {{{{
else
> }
}
print(" 0は整数ですか? " .
" . (7) . "
n");
print("3.5?" . checkInteger(3.5) . "
n");
print("-5 はどうですか?" . checkInteger(-5) . "
n");
print( " . checkInteger(-9.2);
?>

/HTML>
配列の初期化



配列の初期化

< ;FONT SIZE=5>
$monthName = array(1=>"April", "April", "March",//配列を初期化します
"April", "May "、"6 月"、"7 月" 、"8 月"、
"9 月"、"10 月"、"11 月"、"12 月");
print(" 「5 月」は英語で $ monthName[5] .
n");//配列の 6 番目の要素を出力します
?>


配列内の要素を取得します


配列内の要素を取得します

$monthName = array(
/*$monthName[1] を $monthName[12] に定義します*/
1=>"1 月", " 2月」、「3月」、
        "4 月"、"5 月"、"6 月"、
"7 月"、"8 月"、"9 月"、
"10 月"、"11 月"、"12 月"、
/*定义$monthName ["Jan"]到$monthName["Dec"]*/
"Jan"=>"1月"、"2月"=>"2月"、
"3月"=>"3月" 、「Apr」=>「4 月」、
「5 月」=>「5 月」、「6 月」=>「6 月」、
「7 月」=>「7 月」、「8 月」 =>「8 月」、
「9 月」=>「9 月」、「10 月」=>「10 月」、
「11 月」=>「11 月」、「12 月」=>" December",
/*定义$monthName["Jan"]to$monthName["Dec"]*/
"April"=>"1月", "2月"=>"2月",
「March」=>「3 月」、「April」=>「4 月」、
「5 月」=>「5 月」、「6 月」=>「6 月」、
「7 月」 "=>「7 月」、「8 月」=>「8 月」、
「9 月」=>「9 月」、「10 月」=>「10 月」、
「11 月」=> "11 月", "12 月"=>"12 月"
);
/*打印相关的元素*/
print("月 5 です。 " . $monthName[5]. "
n");
print("月 8月" . $monthName["Aug"] . "
n");
print("月 6 月 " . $monthName[" June"] . "
n");
?>


创建一个多维数组


创建一多维数组

$Cities = array( //二维数组array()
"华北地区"=>array(
"北京市",
"天津市",
「石家庄」
),
"西北地区"=>array(
"西安",
"拉萨"
)
);
print( "华北地区: ".$Cities[ "华北地区"][0]); //打印$Cities["华北地区"][0]
?>


PHP 4.0实现表格状打印



实现表格状打印

< ;BODY>
/*
** データ表格化
*/

print("

for($Row=1; $Row <= 12; $Row ++)
{
print(" ;n"); // 開始行

// 各列を実行します
for($Column=1; $列 <= 12; $Column ++)
{
print("
");//开始列
print($Row * $Column);//テーブル要素の積
// 行末

}

print("
n") //表の終わり

?>



<
("使用しているファイルの名前は次のとおりです: ");
print(__FILE__);
print("
n");
print("
");
print("お使いのオペレーティング システムは: ");
print(PHP_OS);
print("
");
print("お使いの php バージョンは: ");
print(PHP_VERSION)
?>



ローカルまたはリモート ファイルを開く



ローカルまたはリモート ファイルを開く</ TITLE><br></HEAD><br><BODY><br><?<br/> print("< ;H3>http プロトコルでファイルを開きます</H3>n");<br> // http プロトコルでファイルを開きます<br> if(!($myFile = fopen("d:web/web/php/test/ data.txt", "r")))<br> {<br> print( "ファイルを開けません"); Content<br> $myLine = fgetss($myFile, 255);<br> print("$ myLine <BR>n");<br> }<br> // ファイルハンドルを閉じます<br> fclose($myFile); <br>?><br></BODY><br/>< /HTML><br>ファイルを開くいくつかの方法の比較<br><HTML><br><HEAD><br><TITLE>ファイルの内容を読み取る


// ファイルを開き、ファイルのすべての文字を出力します
if($myFile = fopen("data.txt", "r"))
{
while(!feof($myFile))
{
$myCharacter = fgetc($myFile)
print($myCharacter);
}
fclose($myFile) );
}
?>
");?> ;
// ファイルを開いて各行を出力しますファイル
if($myFile = fopen("data.txt", "r"))
{
while( !feof($myFile))

}
? >
");?>
/* ファイルを開き、ファイルの各行を同時に印刷します。
同時に取得した文字列内の HTML 言語を削除します
*/
if($myFile = fopen("data.txt", "r"))
{
while(!feof( $myFile) :) 🎜> }
?> ;


ファイルの共通プロパティにアクセスします



アクセスファイル共通属性




print("ファイル所有者 (UID 値):");
print(fileowner("data.txt")."
");
print("ファイル サイズ:"); print(filesize("data.txt")."
");
print("ファイルの種類:");
print(filetype("data.txt")."
");
?>


テキスト ファイルのコンテンツの呼び出し


< ;TITLE>テキスト ファイルの内容の呼び出し



// 開く 同時に、ファイルの各行を出力します
$myFile = file( "data.txt");
for($index = 0; $index < count($myFile); $index++)
{
print($myFile[$index]."
");
}
?>



カタログ関数の作成


カタログ関数の作成

< ;
if(mkdir("myDir1", 0777)) //ディレクトリを作成する関数
{
print("ディレクトリが正常に作成されました") //ディレクトリが正常に作成されました< 🎜; > }
else
{
print("ディレクトリの作成に失敗しました!") //ディレクトリの作成に失敗しました
}
?>

< ;/HTML>
目次を参照


目次を参照

< ;BODY>
// テーブルを使用してディレクトリの構造を参照します
print("n");
/ / テーブルのヘッダーを作成します
print("n");
print("
n") ;
print("

n");
print("gt;n");
$myDirectory = opendir ("."); // オペレーティングディレクトリへのハンドルを作成します
// ディレクトリ内の各サブエントリを読み取ります
while($entryName = readdir($myDirectory))
{
print ("
") ;
print("
");
print("
");
print("
ファイル名 ファイルのサイズ
$entryName");
print(filesize($entryName)) ;
print("
?>


PHP 関連情報


PHP 関連情報


phpinfo();
?>


一般的に使用される数値判定関数


よく使う数値判定関数<br><br>
//判定配列
$colors = array("red", "blue ", "green");
if(is_array($colors))
{
print ("色は配列です"."
");
}
/ /倍精度数値判定
$Temperature = 15.23;
if(is_double($Temperature))
{
print("温度は double"."
");
}
//整数判定
$PageCount = 2234;
if(is_integer($PageCount) ))
{
print("$PageCount は整数です"."
");
}
//オブジェクト判定
class widget
{
var $name;
var $ length;
}
$thing = new widget;
if(is_object($thing))
{
print("thing はオブジェクトです"."
");
}
//文字判定
$Greeting = "Hello";
if(is_string($Greeting))
{
print("挨拶は文字列です。"< ;br>");
}
?>


ファイル アップロード インターフェイス

< HEAD>
<br/></HEAD><br/><br/><br/>? $UploadAction){<br/>$UploadAction=0; <br/>$TimeLimit=60); <br/>If(($Upfile != "")&& <br/>($Upfile != ""); <br/> {<br/>$ filepath = "d:webwebphptest"; $Upfile_size <(1024 * 1024)) <br/>{<br/>$FileSize =number_format((double)($Upfile_size / 1024), 1) " KB";<br/>} <br/> else <br/> { <br/>$FileSize =number_format((double)($Upfile_size/(1024*1024)),1)."MB" <br/>} <br/>if(!file_exists($FileName)) <br/>{ <br/>if(copy($Upfile,$FileName)) <br/>{unlink($Upfile); <br/>echo "<br><br>n"; $Upfile_name が正常にアップロードされました。 ";<br>echo "<br>gt;<br>n";<br>echo "ファイルの場所: $FileName";<br>echo "<br><br>n";<br>echo "ファイル サイズ: $FileSize";<br>echo "<br><br>n";<br>} <br>else <br>{echo "ファイル $Upfile_name のアップロードに失敗しました。 "; } <br>} <br>else <br>{echo "ファイル $Upfile_name はすでに存在します。 "; } <br>} <br>else <br>{echo "アップロードするファイルが選択されていません。 ";} <e> set_time_limit (30); // デフォルトのタイムアウト設定を復元します <br>} <br>? & Gt; <br> & lt; form enCTYPE =" Multipart/form-data "name =" submitform " <br> アクション = "default.php" メソッド = "POST"> <br><INPUT TYPE = "hidden" NAME = "MAX_FILE_SIZE" VALUE = "1000000"> <br/><INPUT TYPE = "hidden" " NAME = "UploadAction" VALUE = "1"> <br/><TR>><TD><INPUT NAME = "Upfile" TYPE = "file" SIZE = "30"><br/></TD><br/></TR><TR><TD><INPUT NAME = "submit" VALUE = "Submit" TYPE = "submit"><br><input name="reset" value="Reset " type="リセット"><br></e> </td> </tr> <br><br>gt;gt;<br>gt; <br>/ HTML> <br> <br> <br> <br> <br> <p style="width:100%;text-align:center;margin:10px 0"></p> </div> </div> <div style="height: 25px;"> <div class="wzconBq" style="display: inline-flex;"> <span>関連ラベル:</span> <div class="wzcbqd"> <a onclick="hits_log(2,'www',this);" href-data="https://www.php.cn/ja/search?word=gt" target="_blank">gt</a> <a onclick="hits_log(2,'www',this);" href-data="https://www.php.cn/ja/search?word=lt" target="_blank">lt</a> <a onclick="hits_log(2,'www',this);" href-data="https://www.php.cn/ja/search?word=nbsp" target="_blank">nbsp</a> <a onclick="hits_log(2,'www',this);" href-data="https://www.php.cn/ja/search?word=print" target="_blank">print</a> <a onclick="hits_log(2,'www',this);" href-data="https://www.php.cn/ja/search?word=quot" target="_blank">quot</a> </div> </div> <div style="display: inline-flex;float: right; color:#333333;">ソース:php.cn</div> </div> <div class="wzconOtherwz"> <a href="https://www.php.cn/ja/faq/236863.html" title="PHP サンプル チュートリアル (4): PHP ベースのマイクロブログ サービスの構築"> <span>前の記事:PHP サンプル チュートリアル (4): PHP ベースのマイクロブログ サービスの構築</span> </a> <a href="https://www.php.cn/ja/faq/236866.html" title="PHP チュートリアル: PHP フレームワークのディスカッション"> <span>次の記事:PHP チュートリアル: PHP フレームワークのディスカッション</span> </a> </div> <div class="wzconShengming"> <div class="bzsmdiv">このウェブサイトの声明</div> <div>この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。</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="wzconZzwz"> <div class="wzconZzwztitle">著者別の最新記事</div> <ul> <li> <div class="wzczzwzli"> <span class="layui-badge-dots"></span> <a target="_blank" href="https://www.php.cn/ja/faq/1796639331.html">NullPointerException とは何ですか?どのように修正すればよいですか?</a> </div> <div>2024-10-22 09:46:29</div> </li> <li> <div class="wzczzwzli"> <span class="layui-badge-dots"></span> <a target="_blank" href="https://www.php.cn/ja/faq/1796629482.html">初心者からプログラマーへ: 旅は C の基礎から始まります</a> </div> <div>2024-10-13 13:53:41</div> </li> <li> <div class="wzczzwzli"> <span class="layui-badge-dots"></span> <a target="_blank" href="https://www.php.cn/ja/faq/1796628545.html">PHP による Web 開発のロックを解除する: 初心者ガイド</a> </div> <div>2024-10-12 12:15:51</div> </li> <li> <div class="wzczzwzli"> <span class="layui-badge-dots"></span> <a target="_blank" href="https://www.php.cn/ja/faq/1796627928.html">C の謎を解く: 新人プログラマーのための明確でシンプルな道</a> </div> <div>2024-10-11 22:47:31</div> </li> <li> <div class="wzczzwzli"> <span class="layui-badge-dots"></span> <a target="_blank" href="https://www.php.cn/ja/faq/1796627806.html">コーディングの可能性を解き放つ: まったくの初心者のための C プログラミング</a> </div> <div>2024-10-11 19:36:51</div> </li> <li> <div class="wzczzwzli"> <span class="layui-badge-dots"></span> <a target="_blank" href="https://www.php.cn/ja/faq/1796627670.html">内なるプログラマーを解き放つ: まったくの初心者のための C</a> </div> <div>2024-10-11 15:50:41</div> </li> <li> <div class="wzczzwzli"> <span class="layui-badge-dots"></span> <a target="_blank" href="https://www.php.cn/ja/faq/1796627643.html">C で生活を自動化する: 初心者向けのスクリプトとツール</a> </div> <div>2024-10-11 15:07:41</div> </li> <li> <div class="wzczzwzli"> <span class="layui-badge-dots"></span> <a target="_blank" href="https://www.php.cn/ja/faq/1796627620.html">PHP を簡単に: Web 開発の最初のステップ</a> </div> <div>2024-10-11 14:21:21</div> </li> <li> <div class="wzczzwzli"> <span class="layui-badge-dots"></span> <a target="_blank" href="https://www.php.cn/ja/faq/1796627574.html">Python で何でも構築: 創造性を解き放つための初心者ガイド</a> </div> <div>2024-10-11 12:59:11</div> </li> <li> <div class="wzczzwzli"> <span class="layui-badge-dots"></span> <a target="_blank" href="https://www.php.cn/ja/faq/1796627539.html">コーディングの鍵: 初心者のための Python の力を解き放つ</a> </div> <div>2024-10-11 12:17:31</div> </li> </ul> </div> <div class="wzconZzwz"> <div class="wzconZzwztitle">最新の問題</div> <div class="wdsyContent"> <div class="wdsyConDiv flexRow wdsyConDiv1"> <div class="wdcdContent flexColumn"> <a href="https://www.php.cn/ja/wenda/176411.html" target="_blank" title="function_exists() はカスタム関数を決定できません" class="wdcdcTitle">function_exists() はカスタム関数を決定できません</a> <a href="https://www.php.cn/ja/wenda/176411.html" class="wdcdcCons">Function test () {return true;} if (function_exists ('test')) {echo "テストは関数です";</a> <div class="wdcdcInfo flexRow"> <div class="wdcdcileft"> <span class="wdcdciSpan"> から 2024-04-29 11:01:01</span> </div> <div class="wdcdciright flexRow"> <div class="wdcdcirdz flexRow ira"> <b class="wdcdcirdzi"></b>0 </div> <div class="wdcdcirpl flexRow ira"><b class="wdcdcirpli"></b>2</div> <div class="wdcdcirwatch flexRow ira"><b class="wdcdcirwatchi"></b>1429</div> </div> </div> </div> </div> <div class="wdsyConLine wdsyConLine2"></div> <div class="wdsyConDiv flexRow wdsyConDiv1"> <div class="wdcdContent flexColumn"> <a href="https://www.php.cn/ja/wenda/176406.html" target="_blank" title="親ウィンドウには出力がありません" class="wdcdcTitle">親ウィンドウには出力がありません</a> <a href="https://www.php.cn/ja/wenda/176406.html" class="wdcdcCons">document.onclick = function(){ window.opener.document.write('私は子ウィンドウの出力です');</a> <div class="wdcdcInfo flexRow"> <div class="wdcdcileft"> <span class="wdcdciSpan"> から 2024-04-18 23:52:34</span> </div> <div class="wdcdciright flexRow"> <div class="wdcdcirdz flexRow ira"> <b class="wdcdcirdzi"></b>0 </div> <div class="wdcdcirpl flexRow ira"><b class="wdcdcirpli"></b>1</div> <div class="wdcdcirwatch flexRow ira"><b class="wdcdcirwatchi"></b>1284</div> </div> </div> </div> </div> <div class="wdsyConLine wdsyConLine2"></div> <div class="wdsyConDiv flexRow wdsyConDiv1"> <div class="wdcdContent flexColumn"> <a href="https://www.php.cn/ja/wenda/176403.html" target="_blank" title="PX から REM への自動変換エラー" class="wdcdcTitle">PX から REM への自動変換エラー</a> <a href="https://www.php.cn/ja/wenda/176403.html" class="wdcdcCons"><style>html { font-size: calc(100vw / 3.75); }body { font-size: 0.16rem; }</style...</a> <div class="wdcdcInfo flexRow"> <div class="wdcdcileft"> <span class="wdcdciSpan"> から 2024-04-16 09:34:16</span> </div> <div class="wdcdciright flexRow"> <div class="wdcdcirdz flexRow ira"> <b class="wdcdcirdzi"></b>0 </div> <div class="wdcdcirpl flexRow ira"><b class="wdcdcirpli"></b>0</div> <div class="wdcdcirwatch flexRow ira"><b class="wdcdcirwatchi"></b>4687</div> </div> </div> </div> </div> <div class="wdsyConLine wdsyConLine2"></div> </div> </div> <div class="wzconZt" > <div class="wzczt-title"> <div>関連トピック</div> <a href="https://www.php.cn/ja/faq/zt" target="_blank">詳細> </a> </div> <div class="wzcttlist"> <ul> <li class="ul-li"> <a target="_blank" href="https://www.php.cn/ja/faq/pythonprint"><img src="https://img.php.cn/upload/subject/202407/22/2024072214040178763.jpg?x-oss-process=image/resize,m_fill,h_145,w_220" alt="Pythonでprint関数を使う方法" /> </a> <a target="_blank" href="https://www.php.cn/ja/faq/pythonprint" class="title-a-spanl" title="Pythonでprint関数を使う方法"><span>Pythonでprint関数を使う方法</span> </a> </li> <li class="ul-li"> <a target="_blank" href="https://www.php.cn/ja/faq/ubuntuqdhpjjf"><img src="https://img.php.cn/upload/subject/202407/22/2024072213330682270.jpg?x-oss-process=image/resize,m_fill,h_145,w_220" alt="Ubuntu 起動時の黒い画面の解決策" /> </a> <a target="_blank" href="https://www.php.cn/ja/faq/ubuntuqdhpjjf" class="title-a-spanl" title="Ubuntu 起動時の黒い画面の解決策"><span>Ubuntu 起動時の黒い画面の解決策</span> </a> </li> <li class="ul-li"> <a target="_blank" href="https://www.php.cn/ja/faq/vscodeszzwcqb"><img src="https://img.php.cn/upload/subject/202407/22/2024072212224683391.jpg?x-oss-process=image/resize,m_fill,h_145,w_220" alt="vscode の中国語再起動設定が有効にならない場合はどうすればよいですか?" /> </a> <a target="_blank" href="https://www.php.cn/ja/faq/vscodeszzwcqb" class="title-a-spanl" title="vscode の中国語再起動設定が有効にならない場合はどうすればよいですか?"><span>vscode の中国語再起動設定が有効にならない場合はどうすればよいですか?</span> </a> </li> <li class="ul-li"> <a target="_blank" href="https://www.php.cn/ja/faq/winlicense"><img src="https://img.php.cn/upload/subject/202407/22/2024072213594199199.jpg?x-oss-process=image/resize,m_fill,h_145,w_220" alt="winlicense の用途は何ですか?" /> </a> <a target="_blank" href="https://www.php.cn/ja/faq/winlicense" class="title-a-spanl" title="winlicense の用途は何ですか?"><span>winlicense の用途は何ですか?</span> </a> </li> <li class="ul-li"> <a target="_blank" href="https://www.php.cn/ja/faq/mmbddzywh"><img src="https://img.php.cn/upload/subject/202407/22/2024072212135051974.jpg?x-oss-process=image/resize,m_fill,h_145,w_220" alt="トロイの木馬ウイルスの主な危険性" /> </a> <a target="_blank" href="https://www.php.cn/ja/faq/mmbddzywh" class="title-a-spanl" title="トロイの木馬ウイルスの主な危険性"><span>トロイの木馬ウイルスの主な危険性</span> </a> </li> <li class="ul-li"> <a target="_blank" href="https://www.php.cn/ja/faq/dnpmxswxh"><img src="https://img.php.cn/upload/subject/202407/22/2024072214140188043.jpg?x-oss-process=image/resize,m_fill,h_145,w_220" alt="コンピューター画面に信号が表示されない" /> </a> <a target="_blank" href="https://www.php.cn/ja/faq/dnpmxswxh" class="title-a-spanl" title="コンピューター画面に信号が表示されない"><span>コンピューター画面に信号が表示されない</span> </a> </li> <li class="ul-li"> <a target="_blank" href="https://www.php.cn/ja/faq/ckfwqzt"><img src="https://img.php.cn/upload/subject/202407/22/2024072214015853896.jpg?x-oss-process=image/resize,m_fill,h_145,w_220" alt="サーバーの状態を確認する方法" /> </a> <a target="_blank" href="https://www.php.cn/ja/faq/ckfwqzt" class="title-a-spanl" title="サーバーの状態を確認する方法"><span>サーバーの状態を確認する方法</span> </a> </li> <li class="ul-li"> <a target="_blank" href="https://www.php.cn/ja/faq/dyzmszjzp"><img src="https://img.php.cn/upload/subject/202407/22/2024072212082292102.jpg?x-oss-process=image/resize,m_fill,h_145,w_220" alt="TikTokで自分の作品を削除する方法" /> </a> <a target="_blank" href="https://www.php.cn/ja/faq/dyzmszjzp" class="title-a-spanl" title="TikTokで自分の作品を削除する方法"><span>TikTokで自分の作品を削除する方法</span> </a> </li> </ul> </div> </div> </div> </div> <div class="phpwzright"> <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="wzrOne"> <div class="wzroTitle">人気のおすすめ</div> <div class="wzroList"> <ul> </ul> </div> </div> <script src="https://sw.php.cn/hezuo/cac1399ab368127f9b113b14eb3316d0.js" type="text/javascript"></script> <div class="wzrThree"> <div class="wzrthree-title"> <div>人気のチュートリアル</div> <a target="_blank" href="https://www.php.cn/ja/course.html">詳細> </a> </div> <div class="wzrthreelist swiper2"> <div class="wzrthreeTab swiper-wrapper"> <div class="check tabdiv swiper-slide" data-id="one">関連するチュートリアル <div></div></div> <div class="tabdiv swiper-slide" data-id="two">人気のおすすめ<div></div></div> <div class="tabdiv swiper-slide" data-id="three">最新のコース<div></div></div> </div> <ul class="one"> <li> <a target="_blank" href="https://www.php.cn/ja/course/812.html" title="最新の ThinkPHP 5.1 ワールドプレミアビデオチュートリアル (PHP エキスパートになるための 60 日間のオンライン トレーニング コース)" class="wzrthreelaimg"> <img src="https://img.php.cn/upload/course/000/000/041/620debc3eab3f377.jpg" alt="最新の ThinkPHP 5.1 ワールドプレミアビデオチュートリアル (PHP エキスパートになるための 60 日間のオンライン トレーニング コース)"/> </a> <div class="wzrthree-right"> <a target="_blank" title="最新の ThinkPHP 5.1 ワールドプレミアビデオチュートリアル (PHP エキスパートになるための 60 日間のオンライン トレーニング コース)" href="https://www.php.cn/ja/course/812.html">最新の ThinkPHP 5.1 ワールドプレミアビデオチュートリアル (PHP エキスパートになるための 60 日間のオンライン トレーニング コース)</a> <div class="wzrthreerb"> <div>1429066 <b class="kclbcollectb"></b></div> <div class="courseICollection" data-id="812"> <b class="nofollow small-nocollect"></b> </div> </div> </div> </li> <li> <a target="_blank" href="https://www.php.cn/ja/course/74.html" title="PHP 入門チュートリアル 1: 1 週間で PHP を学ぶ" class="wzrthreelaimg"> <img src="https://img.php.cn/upload/course/000/000/068/6253d1e28ef5c345.png" alt="PHP 入門チュートリアル 1: 1 週間で PHP を学ぶ"/> </a> <div class="wzrthree-right"> <a target="_blank" title="PHP 入門チュートリアル 1: 1 週間で PHP を学ぶ" href="https://www.php.cn/ja/course/74.html">PHP 入門チュートリアル 1: 1 週間で PHP を学ぶ</a> <div class="wzrthreerb"> <div>4280483 <b class="kclbcollectb"></b></div> <div class="courseICollection" data-id="74"> <b class="nofollow small-nocollect"></b> </div> </div> </div> </li> <li> <a target="_blank" href="https://www.php.cn/ja/course/286.html" title="JAVA 初心者向けビデオチュートリアル" class="wzrthreelaimg"> <img src="https://img.php.cn/upload/course/000/000/068/62590a2bacfd9379.png" alt="JAVA 初心者向けビデオチュートリアル"/> </a> <div class="wzrthree-right"> <a target="_blank" title="JAVA 初心者向けビデオチュートリアル" href="https://www.php.cn/ja/course/286.html">JAVA 初心者向けビデオチュートリアル</a> <div class="wzrthreerb"> <div>2591841 <b class="kclbcollectb"></b></div> <div class="courseICollection" data-id="286"> <b class="nofollow small-nocollect"></b> </div> </div> </div> </li> <li> <a target="_blank" href="https://www.php.cn/ja/course/504.html" title="Little Turtle のゼロベースの Python 学習入門ビデオ チュートリアル" class="wzrthreelaimg"> <img src="https://img.php.cn/upload/course/000/000/068/62590a67ce3a6655.png" alt="Little Turtle のゼロベースの Python 学習入門ビデオ チュートリアル"/> </a> <div class="wzrthree-right"> <a target="_blank" title="Little Turtle のゼロベースの Python 学習入門ビデオ チュートリアル" href="https://www.php.cn/ja/course/504.html">Little Turtle のゼロベースの Python 学習入門ビデオ チュートリアル</a> <div class="wzrthreerb"> <div>511288 <b class="kclbcollectb"></b></div> <div class="courseICollection" data-id="504"> <b class="nofollow small-nocollect"></b> </div> </div> </div> </li> <li> <a target="_blank" href="https://www.php.cn/ja/course/2.html" title="PHP ゼロベースの入門チュートリアル" class="wzrthreelaimg"> <img src="https://img.php.cn/upload/course/000/000/068/6253de27bc161468.png" alt="PHP ゼロベースの入門チュートリアル"/> </a> <div class="wzrthree-right"> <a target="_blank" title="PHP ゼロベースの入門チュートリアル" href="https://www.php.cn/ja/course/2.html">PHP ゼロベースの入門チュートリアル</a> <div class="wzrthreerb"> <div>869353 <b class="kclbcollectb"></b></div> <div class="courseICollection" data-id="2"> <b class="nofollow small-nocollect"></b> </div> </div> </div> </li> </ul> <ul class="two" style="display: none;"> <li> <a target="_blank" href="https://www.php.cn/ja/course/812.html" title="最新の ThinkPHP 5.1 ワールドプレミアビデオチュートリアル (PHP エキスパートになるための 60 日間のオンライン トレーニング コース)" class="wzrthreelaimg"> <img src="https://img.php.cn/upload/course/000/000/041/620debc3eab3f377.jpg" alt="最新の ThinkPHP 5.1 ワールドプレミアビデオチュートリアル (PHP エキスパートになるための 60 日間のオンライン トレーニング コース)"/> </a> <div class="wzrthree-right"> <a target="_blank" title="最新の ThinkPHP 5.1 ワールドプレミアビデオチュートリアル (PHP エキスパートになるための 60 日間のオンライン トレーニング コース)" href="https://www.php.cn/ja/course/812.html">最新の ThinkPHP 5.1 ワールドプレミアビデオチュートリアル (PHP エキスパートになるための 60 日間のオンライン トレーニング コース)</a> <div class="wzrthreerb"> <div >1429066 回の学習</div> <div class="courseICollection" data-id="812"> <b class="nofollow small-nocollect"></b> </div> </div> </div> </li> <li> <a target="_blank" href="https://www.php.cn/ja/course/286.html" title="JAVA 初心者向けビデオチュートリアル" class="wzrthreelaimg"> <img src="https://img.php.cn/upload/course/000/000/068/62590a2bacfd9379.png" alt="JAVA 初心者向けビデオチュートリアル"/> </a> <div class="wzrthree-right"> <a target="_blank" title="JAVA 初心者向けビデオチュートリアル" href="https://www.php.cn/ja/course/286.html">JAVA 初心者向けビデオチュートリアル</a> <div class="wzrthreerb"> <div >2591841 回の学習</div> <div class="courseICollection" data-id="286"> <b class="nofollow small-nocollect"></b> </div> </div> </div> </li> <li> <a target="_blank" href="https://www.php.cn/ja/course/504.html" title="Little Turtle のゼロベースの Python 学習入門ビデオ チュートリアル" class="wzrthreelaimg"> <img src="https://img.php.cn/upload/course/000/000/068/62590a67ce3a6655.png" alt="Little Turtle のゼロベースの Python 学習入門ビデオ チュートリアル"/> </a> <div class="wzrthree-right"> <a target="_blank" title="Little Turtle のゼロベースの Python 学習入門ビデオ チュートリアル" href="https://www.php.cn/ja/course/504.html">Little Turtle のゼロベースの Python 学習入門ビデオ チュートリアル</a> <div class="wzrthreerb"> <div >511288 回の学習</div> <div class="courseICollection" data-id="504"> <b class="nofollow small-nocollect"></b> </div> </div> </div> </li> <li> <a target="_blank" href="https://www.php.cn/ja/course/901.html" title="Web フロントエンド開発の簡単な紹介" class="wzrthreelaimg"> <img src="https://img.php.cn/upload/course/000/000/067/64be28a53a4f6310.png" alt="Web フロントエンド開発の簡単な紹介"/> </a> <div class="wzrthree-right"> <a target="_blank" title="Web フロントエンド開発の簡単な紹介" href="https://www.php.cn/ja/course/901.html">Web フロントエンド開発の簡単な紹介</a> <div class="wzrthreerb"> <div >216396 回の学習</div> <div class="courseICollection" data-id="901"> <b class="nofollow small-nocollect"></b> </div> </div> </div> </li> <li> <a target="_blank" href="https://www.php.cn/ja/course/234.html" title="PSビデオチュートリアルをゼロからマスターする" class="wzrthreelaimg"> <img src="https://img.php.cn/upload/course/000/000/068/62611f57ed0d4840.jpg" alt="PSビデオチュートリアルをゼロからマスターする"/> </a> <div class="wzrthree-right"> <a target="_blank" title="PSビデオチュートリアルをゼロからマスターする" href="https://www.php.cn/ja/course/234.html">PSビデオチュートリアルをゼロからマスターする</a> <div class="wzrthreerb"> <div >903269 回の学習</div> <div class="courseICollection" data-id="234"> <b class="nofollow small-nocollect"></b> </div> </div> </div> </li> </ul> <ul class="three" style="display: none;"> <li> <a target="_blank" href="https://www.php.cn/ja/course/1648.html" title="[Web フロントエンド] Node.js クイック スタート" class="wzrthreelaimg"> <img src="https://img.php.cn/upload/course/000/000/067/662b5d34ba7c0227.png" alt="[Web フロントエンド] Node.js クイック スタート"/> </a> <div class="wzrthree-right"> <a target="_blank" title="[Web フロントエンド] Node.js クイック スタート" href="https://www.php.cn/ja/course/1648.html">[Web フロントエンド] Node.js クイック スタート</a> <div class="wzrthreerb"> <div >8411 回の学習</div> <div class="courseICollection" data-id="1648"> <b class="nofollow small-nocollect"></b> </div> </div> </div> </li> <li> <a target="_blank" href="https://www.php.cn/ja/course/1647.html" title="海外のWeb開発フルスタックコースの完全なコレクション" class="wzrthreelaimg"> <img src="https://img.php.cn/upload/course/000/000/067/6628cc96e310c937.png" alt="海外のWeb開発フルスタックコースの完全なコレクション"/> </a> <div class="wzrthree-right"> <a target="_blank" title="海外のWeb開発フルスタックコースの完全なコレクション" href="https://www.php.cn/ja/course/1647.html">海外のWeb開発フルスタックコースの完全なコレクション</a> <div class="wzrthreerb"> <div >6735 回の学習</div> <div class="courseICollection" data-id="1647"> <b class="nofollow small-nocollect"></b> </div> </div> </div> </li> <li> <a target="_blank" href="https://www.php.cn/ja/course/1646.html" title="Go言語実践GraphQL" class="wzrthreelaimg"> <img src="https://img.php.cn/upload/course/000/000/067/662221173504a436.png" alt="Go言語実践GraphQL"/> </a> <div class="wzrthree-right"> <a target="_blank" title="Go言語実践GraphQL" href="https://www.php.cn/ja/course/1646.html">Go言語実践GraphQL</a> <div class="wzrthreerb"> <div >5590 回の学習</div> <div class="courseICollection" data-id="1646"> <b class="nofollow small-nocollect"></b> </div> </div> </div> </li> <li> <a target="_blank" href="https://www.php.cn/ja/course/1645.html" title="550W ファンマスターが JavaScript をゼロから段階的に学習します" class="wzrthreelaimg"> <img src="https://img.php.cn/upload/course/000/000/067/662077e163124646.png" alt="550W ファンマスターが JavaScript をゼロから段階的に学習します"/> </a> <div class="wzrthree-right"> <a target="_blank" title="550W ファンマスターが JavaScript をゼロから段階的に学習します" href="https://www.php.cn/ja/course/1645.html">550W ファンマスターが JavaScript をゼロから段階的に学習します</a> <div class="wzrthreerb"> <div >754 回の学習</div> <div class="courseICollection" data-id="1645"> <b class="nofollow small-nocollect"></b> </div> </div> </div> </li> <li> <a target="_blank" href="https://www.php.cn/ja/course/1644.html" title="Python マスター Mosh、基礎知識ゼロの初心者でも 6 時間で始められる" class="wzrthreelaimg"> <img src="https://img.php.cn/upload/course/000/000/067/6616418ca80b8916.png" alt="Python マスター Mosh、基礎知識ゼロの初心者でも 6 時間で始められる"/> </a> <div class="wzrthree-right"> <a target="_blank" title="Python マスター Mosh、基礎知識ゼロの初心者でも 6 時間で始められる" href="https://www.php.cn/ja/course/1644.html">Python マスター Mosh、基礎知識ゼロの初心者でも 6 時間で始められる</a> <div class="wzrthreerb"> <div >28637 回の学習</div> <div class="courseICollection" data-id="1644"> <b class="nofollow small-nocollect"></b> </div> </div> </div> </li> </ul> </div> <script> var mySwiper = new Swiper('.swiper2', { autoplay: false,//可选选项,自动滑动 slidesPerView : 'auto', }) $('.wzrthreeTab>div').click(function(e){ $('.wzrthreeTab>div').removeClass('check') $(this).addClass('check') $('.wzrthreelist>ul').css('display','none') $('.'+e.currentTarget.dataset.id).show() }) </script> </div> <div class="wzrFour"> <div class="wzrfour-title"> <div>最新のダウンロード</div> <a href="https://www.php.cn/ja/xiazai">詳細> </a> </div> <script> $(document).ready(function(){ var sjyx_banSwiper = new Swiper(".sjyx_banSwiperwz",{ speed:1000, autoplay:{ delay:3500, disableOnInteraction: false, }, pagination:{ el:'.sjyx_banSwiperwz .swiper-pagination', clickable :false, }, loop:true }) }) </script> <div class="wzrfourList swiper3"> <div class="wzrfourlTab swiper-wrapper"> <div class="check swiper-slide" data-id="onef">ウェブエフェクト <div></div></div> <div class="swiper-slide" data-id="twof">公式サイト<div></div></div> <div class="swiper-slide" data-id="threef">サイト素材<div></div></div> <div class="swiper-slide" data-id="fourf">フロントエンドテンプレート<div></div></div> </div> <ul class="onef"> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a target="_blank" title="jQuery エンタープライズ メッセージ フォームの連絡先コード" href="https://www.php.cn/ja/toolset/js-special-effects/8071">[フォームボタン] jQuery エンタープライズ メッセージ フォームの連絡先コード</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a target="_blank" title="HTML5 MP3 オルゴール再生効果" href="https://www.php.cn/ja/toolset/js-special-effects/8070">[プレイヤーの特殊効果] HTML5 MP3 オルゴール再生効果</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a target="_blank" title="HTML5 クールなパーティクル アニメーション ナビゲーション メニューの特殊効果" href="https://www.php.cn/ja/toolset/js-special-effects/8069">[メニューナビゲーション] HTML5 クールなパーティクル アニメーション ナビゲーション メニューの特殊効果</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a target="_blank" title="jQuery ビジュアル フォームのドラッグ アンド ドロップ編集コード" href="https://www.php.cn/ja/toolset/js-special-effects/8068">[フォームボタン] jQuery ビジュアル フォームのドラッグ アンド ドロップ編集コード</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a target="_blank" title="VUE.JS 模倣 Kugou 音楽プレーヤー コード" href="https://www.php.cn/ja/toolset/js-special-effects/8067">[プレイヤーの特殊効果] VUE.JS 模倣 Kugou 音楽プレーヤー コード</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a target="_blank" title="古典的な HTML5 プッシュ ボックス ゲーム" href="https://www.php.cn/ja/toolset/js-special-effects/8066">[html5特殊効果] 古典的な HTML5 プッシュ ボックス ゲーム</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a target="_blank" title="画像効果を追加または削減するための jQuery スクロール" href="https://www.php.cn/ja/toolset/js-special-effects/8065">[画像の特殊効果] 画像効果を追加または削減するための jQuery スクロール</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a target="_blank" title="CSS3 個人アルバム カバー ホバー ズーム効果" href="https://www.php.cn/ja/toolset/js-special-effects/8064">[フォトアルバム効果] CSS3 個人アルバム カバー ホバー ズーム効果</a> </div> </li> </ul> <ul class="twof" style="display:none"> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="https://www.php.cn/ja/toolset/website-source-code/8328" title="室内装飾クリーニングおよび修理サービス会社のウェブサイトのテンプレート" target="_blank">[フロントエンドテンプレート] 室内装飾クリーニングおよび修理サービス会社のウェブサイトのテンプレート</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="https://www.php.cn/ja/toolset/website-source-code/8327" title="フレッシュカラーの個人履歴書ガイドページテンプレート" target="_blank">[フロントエンドテンプレート] フレッシュカラーの個人履歴書ガイドページテンプレート</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="https://www.php.cn/ja/toolset/website-source-code/8326" title="デザイナーのクリエイティブな仕事の履歴書 Web テンプレート" target="_blank">[フロントエンドテンプレート] デザイナーのクリエイティブな仕事の履歴書 Web テンプレート</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="https://www.php.cn/ja/toolset/website-source-code/8325" title="現代のエンジニアリング建設会社のウェブサイトのテンプレート" target="_blank">[フロントエンドテンプレート] 現代のエンジニアリング建設会社のウェブサイトのテンプレート</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="https://www.php.cn/ja/toolset/website-source-code/8324" title="教育サービス機関向けのレスポンシブ HTML5 テンプレート" target="_blank">[フロントエンドテンプレート] 教育サービス機関向けのレスポンシブ HTML5 テンプレート</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="https://www.php.cn/ja/toolset/website-source-code/8323" title="オンライン電子書籍ストア モールのウェブサイト テンプレート" target="_blank">[フロントエンドテンプレート] オンライン電子書籍ストア モールのウェブサイト テンプレート</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="https://www.php.cn/ja/toolset/website-source-code/8322" title="IT テクノロジーがインターネット企業の Web サイト テンプレートを解決します" target="_blank">[フロントエンドテンプレート] IT テクノロジーがインターネット企業の Web サイト テンプレートを解決します</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="https://www.php.cn/ja/toolset/website-source-code/8321" title="パープルスタイル外国為替取引サービスウェブサイトテンプレート" target="_blank">[フロントエンドテンプレート] パープルスタイル外国為替取引サービスウェブサイトテンプレート</a> </div> </li> </ul> <ul class="threef" style="display:none"> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="https://www.php.cn/ja/toolset/website-materials/3078" target="_blank" title="かわいい夏の要素のベクター素材 (EPS+PNG)">[PNG素材] かわいい夏の要素のベクター素材 (EPS+PNG)</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="https://www.php.cn/ja/toolset/website-materials/3077" target="_blank" title="4 つの赤い 2023 卒業バッジ ベクター素材 (AI+EPS+PNG)">[PNG素材] 4 つの赤い 2023 卒業バッジ ベクター素材 (AI+EPS+PNG)</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="https://www.php.cn/ja/toolset/website-materials/3076" target="_blank" title="歌う鳥と花がいっぱいのカートデザイン春のバナーベクター素材(AI+EPS)">[バナー画像] 歌う鳥と花がいっぱいのカートデザイン春のバナーベクター素材(AI+EPS)</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="https://www.php.cn/ja/toolset/website-materials/3075" target="_blank" title="金色の卒業帽ベクター素材(EPS+PNG)">[PNG素材] 金色の卒業帽ベクター素材(EPS+PNG)</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="https://www.php.cn/ja/toolset/website-materials/3074" target="_blank" title="黒と白のスタイルの山アイコン ベクター素材 (EPS+PNG)">[PNG素材] 黒と白のスタイルの山アイコン ベクター素材 (EPS+PNG)</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="https://www.php.cn/ja/toolset/website-materials/3073" target="_blank" title="異なる色のマントと異なるポーズを持つスーパーヒーローのシルエットベクター素材(EPS+PNG)">[PNG素材] 異なる色のマントと異なるポーズを持つスーパーヒーローのシルエットベクター素材(EPS+PNG)</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="https://www.php.cn/ja/toolset/website-materials/3072" target="_blank" title="フラット スタイルの植樹祭バナー ベクター素材 (AI+EPS)">[バナー画像] フラット スタイルの植樹祭バナー ベクター素材 (AI+EPS)</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="https://www.php.cn/ja/toolset/website-materials/3071" target="_blank" title="9つのコミックスタイルの爆発するチャットバブルベクター素材(EPS+PNG)">[PNG素材] 9つのコミックスタイルの爆発するチャットバブルベクター素材(EPS+PNG)</a> </div> </li> </ul> <ul class="fourf" style="display:none"> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="https://www.php.cn/ja/toolset/website-source-code/8328" target="_blank" title="室内装飾クリーニングおよび修理サービス会社のウェブサイトのテンプレート">[フロントエンドテンプレート] 室内装飾クリーニングおよび修理サービス会社のウェブサイトのテンプレート</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="https://www.php.cn/ja/toolset/website-source-code/8327" target="_blank" title="フレッシュカラーの個人履歴書ガイドページテンプレート">[フロントエンドテンプレート] フレッシュカラーの個人履歴書ガイドページテンプレート</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="https://www.php.cn/ja/toolset/website-source-code/8326" target="_blank" title="デザイナーのクリエイティブな仕事の履歴書 Web テンプレート">[フロントエンドテンプレート] デザイナーのクリエイティブな仕事の履歴書 Web テンプレート</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="https://www.php.cn/ja/toolset/website-source-code/8325" target="_blank" title="現代のエンジニアリング建設会社のウェブサイトのテンプレート">[フロントエンドテンプレート] 現代のエンジニアリング建設会社のウェブサイトのテンプレート</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="https://www.php.cn/ja/toolset/website-source-code/8324" target="_blank" title="教育サービス機関向けのレスポンシブ HTML5 テンプレート">[フロントエンドテンプレート] 教育サービス機関向けのレスポンシブ HTML5 テンプレート</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="https://www.php.cn/ja/toolset/website-source-code/8323" target="_blank" title="オンライン電子書籍ストア モールのウェブサイト テンプレート">[フロントエンドテンプレート] オンライン電子書籍ストア モールのウェブサイト テンプレート</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="https://www.php.cn/ja/toolset/website-source-code/8322" target="_blank" title="IT テクノロジーがインターネット企業の Web サイト テンプレートを解決します">[フロントエンドテンプレート] IT テクノロジーがインターネット企業の Web サイト テンプレートを解決します</a> </div> </li> <li> <div class="wzrfourli"> <span class="layui-badge-dots wzrflr"></span> <a href="https://www.php.cn/ja/toolset/website-source-code/8321" target="_blank" title="パープルスタイル外国為替取引サービスウェブサイトテンプレート">[フロントエンドテンプレート] パープルスタイル外国為替取引サービスウェブサイトテンプレート</a> </div> </li> </ul> </div> <script> var mySwiper = new Swiper('.swiper3', { autoplay: false,//可选选项,自动滑动 slidesPerView : 'auto', }) $('.wzrfourlTab>div').click(function(e){ $('.wzrfourlTab>div').removeClass('check') $(this).addClass('check') $('.wzrfourList>ul').css('display','none') $('.'+e.currentTarget.dataset.id).show() }) </script> </div> </div> </div> <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?1737519795"></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> <!-- Matomo --> <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> <!-- End Matomo Code --> </body> </html>