1. \n<\/pre>\n

    \nYou can change the document type to match, you can even define it in the settings of every website created using the framework, and being able to change the document type is also useful\n<\/p>\n

    lang\n<\/pre>\n

    . It can be useful to define the stylesheet as a setting as well, which we will cover in a future tutorial. <\/p>\n

    \nAdditionally, meta description and meta key attributes can be hard-coded into the skin of every website you create, but it is wise to <\/p> provide a different set of descriptions and keywords for each page

    to prevent Broken pages appear <\/strong> in Google's supplemental index. \n<\/strong>\nThe {pagetitle} placeholder will be used to insert the title of the current page into the template. <\/p>\n

    <\/p>

    \n

    国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

    \nNow, we can move on to the body of the template XHTML file to create a generic front-end design for our framework. We'll keep the layout simple for now, assuming that most of the websites we'll create using this framework will use a traditional header, content, columns, and footer scheme. <\/h4>\n
    \n
    \n\n<\/div>\n
    \n\n<\/div>\n
    \n\n<\/div>\n\n
    \n\n<\/div>\n\n<\/div>\n<\/body>\n<\/html>\n<\/pre>\n

    Step 2: Basic Content<\/p>\n

    \nAs promised, we're going to fill in some basic stuff so that we can style it so that we have at least most of the tags that are likely to appear in a page that's ready to be styled: <\/h3>\n
     \n\n\n{pagetitle}<\/title>\n<meta name=\"description\" content=\"{metadesc}\" \/>\n<meta name=\"keywords\" content=\"{metakey}\" \/>\n<style type=\"text\/css\" title=\"Default page style\" media=\"screen\"><!--@import \"skins\/fmwk\/style.css\";--><\/style>\n<link rel=\"icon\" href=\"favicon.ico\" type=\"image\/x-icon\" \/>\n<link rel=\"shortcut icon\" href=\"favicon.ico\" type=\"image\/x-icon\" \/>\n<\/head>\n<body>\n<div   class="377j5v51b"   id=\"wrapper\">\n<div   class="377j5v51b"   id=\"header\">\n<h2><a href=\"#\" title=\"Website name\">Website name<\/a><\/h2>\n<\/div>\n<div   class="377j5v51b"   id=\"content\">\n<h1>{pagetitle}<\/h1>\n<img class=\"photo\" src=\"photo.jpg\" alt=\"Photo test\" \/>\n<p>\nLorem ipsum dolor sit amet, <strong>consectetuer adipiscing elit<\/strong>. Quisque urna augue, fringilla quis, pulvinar non, feugiat in, pede. Curabitur vitae pede. Cras vehicula varius tellus. Sed consequat, enim tristique euismod volutpat, <em>tellus magna aliquet risus<\/em>, id aliquet eros metus at purus. \n<\/p>\n<h2>Secondary heading<\/h2>\n<p>\nAliquam dictum, nibh eget <a href=\"#\" title=\"Test link\">ullamcorper condimentum<\/a>, magna turpis placerat pede, tempor facilisis tortor urna commodo turpis. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Cras luctus cursus velit. Nullam imperdiet turpis.\n<\/p>\n<h3>Tertiary heading<\/h3>\n<table>\n<tr>\n<th>Heading<\/th>\n<td>Data<\/td>\n<\/tr>\n<tr>\n<th>Heading<\/th>\n<td>Data<\/td>\n<\/tr>\n<\/table>\n<p>\n<img src=\"image.jpg\" alt=\"Generic image\" \/>\nCras a eros eget lorem fermentum malesuada. Phasellus condimentum libero vel lacus. Donec lectus nisl, adipiscing malesuada, sodales tincidunt, sagittis vitae, lacus. Proin nec pede. Maecenas adipiscing adipiscing risus.\n<\/p>\n<\/div><!--\/content-->\n<div   class="377j5v51b"   id=\"column\">\n\n<ul>\n<li>List item<\/li>\n<li>List item<\/li>\n<li>List item<\/li>\n<\/ul>\n\n<ol>\n<li>List item<\/li>\n<li>List item<\/li>\n<li>List item<\/li>\n<li>List item<\/li>\n<\/ol>\n\n<\/div><!--\/column-->\n\n<div   class="377j5v51b"   id=\"footer\">\n<p>\n© Website name, 2008.\n<\/p>\n<\/div><!--\/footer-->\n\n<\/div><!--\/wrapper-->\n<\/body>\n<\/html>\n<\/pre>\n<p>\nNow the content is ready for some simple styling. <\/p>\n<p>Step 3: Basic Style<\/p>\n<h3>\nWe first use CSS to reset the margins and padding of elements in the XHTML document: <\/h3>\n<pre class='brush:php;toolbar:false;'>body, * {\nmargin: 0;\npadding 0;\n}\n<\/pre>\n<p>\nWe'll spend some time styling the body element and making sure links in the document are highlighted appropriately: <\/p>\n<pre class='brush:php;toolbar:false;'>body {\nbackground: #FFF;\ncolor: #000;\nfont-family: \"helvetica\", \"arial\", \"verdana\", sans-serif;\nfont-size: 62.5%;\n}\n\na, a:active, a:link  {\ncolor: #1A64AC;\ntext-decoration: underline;\t\n}\n\na:visited {\ncolor: #0D2F4F;\n}\n<\/pre>\n<p>\nNext, we'll center our design in #wrapper divs and assign each div a faint border so we can see them when styling. <\/p>\n<pre class='brush:php;toolbar:false;'>#wrapper {\nmargin: 0 auto;\nwidth: 950px;\t\n}\n<br \/>\n#wrapper, #header, #content, #column, #footer {\nborder: 1px #DDD solid;\n}\n<\/pre>\n<p>\nWhile the CSS above does not centralize this design in Internet Explorer 6, the CSS has been kept basic for maximum flexibility. With a little more CSS, we almost have a complete <\/p> skeleton design for the front end of the framework<p> - all that's left is some simple positioning:<strong>\n<pre class='brush:php;toolbar:false;'>#column, #content {\nfloat: left;\nfont-size: 125%;\npadding: 5px;\n}\n\n#column {\nwidth: 200px;\n}\n\n#content {\nmargin-left 5px;\nwidth: \t725px;\n}\n\n#header, #footer {\nclear: both;\n}\n<\/pre>\n<\/strong>\nNow all that's left is the image: <\/p>\n<pre class='brush:php;toolbar:false;'>#column img, #content img {\nborder: 2px #DDD solid;\nfloat: left;\nmargin: 0 5px 0 10px;\n}\nimg.photo {\nbackground: #DDD;\nfloat: right !important;\npadding: 25px 2px;\n}\n<\/pre>\n<p>\nWhat we are left with at this stage is a simple website layout that we can use as the basis for a PHP framework front-end: <\/p>\n<p><\/p><p>\n<img src=\"https:\/\/img.php.cn\/upload\/article\/000\/465\/014\/169371056127053.gif\" alt=\"Building a PHP5 framework: Part 3\" \/>\nOf course, for extra flexibility it might be useful to allow 2 columns of content by default, which can be done by adding more XHTML and CSS. <\/p>\n<p>Step 4: Template from XHTML<\/p>\n<h3>\nThe next step is to transfer the XHTML, CSS and images to <\/h3> a skin<p> suitable for our PHP framework. To do this, we need to split the XHTML into three templates: header, main template, and footer. Due to the way the template system is structured, pages can be generated from any number of templates, but it is recommended to use at least header, footer and main templates, which means that, in general, we only need to copy and change if we want to create a structure slightly If there are different new pages, use the main template file. <strong>\n<\/strong>Header template for PHP framework (skins\/default\/templates\/header.tpl.php)<\/p>\n<h4>\nThe PHP framework's header template should contain an XHTML section, and <\/h4><p>\n<\/p>\npart:<p><\/p>\n<pre class='brush:php;toolbar:false;'><!DOCTYPE html PUBLIC \"-\/\/W3C\/\/DTD XHTML 1.0 Strict\/\/EN\" \"http:\/\/www.w3.org\/TR\/xhtml1\/DTD\/xhtml1-strict.dtd\"> \n<html xmlns=\"http:\/\/www.w3.org\/1999\/xhtml\" xml:lang=\"en\" lang=\"en\">\n<head>\n<title>{pagetitle}<\/title>\n<meta name=\"description\" content=\"{metadesc}\" \/>\n<meta name=\"keywords\" content=\"{metakey}\" \/>\n<style type=\"text\/css\" title=\"Default page style\" media=\"screen\"><!--@import \"style.css\";--><\/style>\n<link rel=\"icon\" href=\"favicon.ico\" type=\"image\/x-icon\" \/>\n<link rel=\"shortcut icon\" href=\"favicon.ico\" type=\"image\/x-icon\" \/>\n<\/head>\n<body>\n<div   class="377j5v51b"   id=\"wrapper\">\n<div   class="377j5v51b"   id=\"header\">\n<h2><a href=\"#\" title=\"Website name\">Website name<\/a><\/h2>\n<\/div>\n<\/pre>\n<h4>PHP 框架的主模板 (skins\/default\/templates\/main.tpl.php)<\/h4>\n<p>\n主模板應(yīng)包括包含主要內(nèi)容和列中任何內(nèi)容的 div。我們現(xiàn)在可以為此內(nèi)容插入占位符,而不是復(fù)制我們用來設(shè)置段落、有序列表和表格等元素樣式的虛擬文本,占位符將根據(jù)內(nèi)容所在的位置進(jìn)行更新。<\/p>\n<p>占位符內(nèi)容是:<\/p>\n<ul>\n<li> {pagetitle} 頁面標(biāo)題。<\/li>\n<li> {maincontent} 頁面的主要內(nèi)容。<\/li>\n<li> {btitle} 和 {bcontent} 內(nèi)容塊的標(biāo)題和內(nèi)容。它包含在 rcolumn 循環(huán)中,因此可以在列中放置多個塊。<\/li>\n<\/ul>\n<pre class='brush:php;toolbar:false;'><div   class="377j5v51b"   id=\"content\">\n<h1>{pagetitle}<\/h1>\n{maincontent}\n<\/div><!--\/content-->\n\n<div   class="377j5v51b"   id=\"column\">\n<!-- START rcolumn -->\n<h2>{btitle}<\/h2>\n{bcontent}\n<!-- END rcolumn -->\n<\/div><!--\/column-->\n<\/pre>\n<h4>PHP 框架的頁腳模板 (skins\/default\/templates\/footer.tpl.php)<\/h4>\n<p>\n最后,剩余的 XHTML 放入頁腳文件中,該文件關(guān)閉 XHTML 文檔和正文部分。我們通常使用它來在我們的網(wǎng)站上包含版權(quán)聲明和“網(wǎng)頁設(shè)計者”鏈接。<\/p>\n<pre class='brush:php;toolbar:false;'><div   class="377j5v51b"   id=\"footer\">\n<p>\n? Website name, 2008.\n<\/p>\n<\/div><!--\/footer-->\n\n<\/div><!--\/wrapper-->\n<\/body>\n<\/html>\n<\/pre>\n<p>\n對于我們系列中 PHP 的中斷表示歉意,但為我們的框架和使用它的應(yīng)用程序構(gòu)建皮膚格式的相關(guān)模板非常重要。 <strong>PHP5 框架開發(fā)<\/strong>系列中的第 4 部分將介紹基本的安全注意事項和基本的身份驗證處理程序,然后我們將繼續(xù)創(chuàng)建內(nèi)容管理模型,并在第 5 部分中研究模型如何組合在一起。該系列中的內(nèi)容:發(fā)送電子郵件、擴(kuò)展我們的框架以及以創(chuàng)新的方式記錄用戶事件流。<\/p>\n<\/div>\n"}	</script>
    	
    <meta http-equiv="Cache-Control" content="no-transform" />
    <meta http-equiv="Cache-Control" content="no-siteapp" />
    <script>var V_PATH="/";window.onerror=function(){ return true; };</script>
    </head>
    
    <body data-commit-time="2023-12-28T14:50:12+08:00" class="editor_body body2_2">
    	<link rel="stylesheet" type="text/css" href="/static/csshw/stylehw.css">
    <header>
        <div   id="377j5v51b"   class="head">
            <div   id="377j5v51b"   class="haed_left">
                <div   id="377j5v51b"   class="haed_logo">
                    <a href="http://m.miracleart.cn/" title="" class="haed_logo_a">
                        <img src="/static/imghw/logo.png" alt="" class="haed_logoimg">
                    </a>
                </div>
                <div   id="377j5v51b"   class="head_nav">
                    <div   id="377j5v51b"   class="head_navs">
                        <a href="javascript:;" title="Community" class="head_nava head_nava-template1">Community</a>
                        <div   class="377j5v51b"   id="dropdown-template1" style="display: none;">
                            <div   id="377j5v51b"   class="languagechoose">
                                <a href="http://m.miracleart.cn/article.html" title="Articles" class="languagechoosea on">Articles</a>
                                <a href="http://m.miracleart.cn/faq/zt" title="Topics" class="languagechoosea">Topics</a>
                                <a href="http://m.miracleart.cn/wenda.html" title="Q&A" class="languagechoosea">Q&A</a>
                            </div>
                        </div>
                    </div>
    
                    <div   id="377j5v51b"   class="head_navs">
                        <a href="javascript:;" title="Learn" class="head_nava head_nava-template1_1">Learn</a>
                        <div   class="377j5v51b"   id="dropdown-template1_1" style="display: none;">
                            <div   id="377j5v51b"   class="languagechoose">
                                <a href="http://m.miracleart.cn/course.html" title="Course" class="languagechoosea on">Course</a>
                                <a href="http://m.miracleart.cn/dic/" title="Programming Dictionary" class="languagechoosea">Programming Dictionary</a>
                            </div>
                        </div>
                    </div>
    
                    <div   id="377j5v51b"   class="head_navs">
                        <a href="javascript:;" title="Tools Library" class="head_nava head_nava-template1_2">Tools Library</a>
                        <div   class="377j5v51b"   id="dropdown-template1_2" style="display: none;">
                            <div   id="377j5v51b"   class="languagechoose">
                                <a href="http://m.miracleart.cn/toolset/development-tools" title="Development tools" class="languagechoosea on">Development tools</a>
                                <a href="http://m.miracleart.cn/toolset/website-source-code" title="Website Source Code" class="languagechoosea">Website Source Code</a>
                                <a href="http://m.miracleart.cn/toolset/php-libraries" title="PHP Libraries" class="languagechoosea">PHP Libraries</a>
                                <a href="http://m.miracleart.cn/toolset/js-special-effects" title="JS special effects" class="languagechoosea on">JS special effects</a>
                                <a href="http://m.miracleart.cn/toolset/website-materials" title="Website Materials" class="languagechoosea on">Website Materials</a>
                                <a href="http://m.miracleart.cn/toolset/extension-plug-ins" title="Extension plug-ins" class="languagechoosea on">Extension plug-ins</a>
                            </div>
                        </div>
                    </div>
    
                    <div   id="377j5v51b"   class="head_navs">
                        <a href="http://m.miracleart.cn/ai" title="AI Tools" class="head_nava head_nava-template1_3">AI Tools</a>
                    </div>
    
                    <div   id="377j5v51b"   class="head_navs">
                        <a href="javascript:;" title="Leisure" class="head_nava head_nava-template1_3">Leisure</a>
                        <div   class="377j5v51b"   id="dropdown-template1_3" style="display: none;">
                            <div   id="377j5v51b"   class="languagechoose">
                                <a href="http://m.miracleart.cn/game" title="Game Download" class="languagechoosea on">Game Download</a>
                                <a href="http://m.miracleart.cn/mobile-game-tutorial/" title="Game Tutorials" class="languagechoosea">Game Tutorials</a>
    
                            </div>
                        </div>
                    </div>
                </div>
            </div>
                        <div   id="377j5v51b"   class="head_search">
                    <input id="key_words"  onkeydown="if (event.keyCode == 13) searchs('en')" class="search-input" type="text" autocomplete="off" name="keywords" required="required" placeholder="Block,address,transaction,news" value="">
                    <a href="javascript:;" title="search"  onclick="searchs('en')"><img src="/static/imghw/find.png" alt="search"></a>
                </div>
                    <div   id="377j5v51b"   class="head_right">
                <div   id="377j5v51b"   class="haed_language">
                    <a href="javascript:;" class="layui-btn haed_language_btn">English<i class="layui-icon layui-icon-triangle-d"></i></a>
                    <div   class="377j5v51b"   id="dropdown-template" style="display: none;">
                        <div   id="377j5v51b"   class="languagechoose">
                                                    <a href="javascript:setlang('zh-cn');" title="簡體中文" class="languagechoosea">簡體中文</a>
                                                    <a href="javascript:;" title="English" class="languagechoosea">English</a>
                                                    <a href="javascript:setlang('zh-tw');" title="繁體中文" class="languagechoosea">繁體中文</a>
                                                    <a href="javascript:setlang('ja');" title="日本語" class="languagechoosea">日本語</a>
                                                    <a href="javascript:setlang('ko');" title="???" class="languagechoosea">???</a>
                                                    <a href="javascript:setlang('ms');" title="Melayu" class="languagechoosea">Melayu</a>
                                                    <a href="javascript:setlang('fr');" title="Fran?ais" class="languagechoosea">Fran?ais</a>
                                                    <a href="javascript:setlang('de');" title="Deutsch" class="languagechoosea">Deutsch</a>
                                                </div>
                    </div>
                </div>
                <span id="377j5v51b"    class="head_right_line"></span>
                                <div style="display: block;" id="login" class="haed_login ">
                        <a href="javascript:;"  title="Login" class="haed_logina ">Login</a>
                    </div>
                    <div style="display: block;" id="reg" class="head_signup login">
                        <a href="javascript:;"  title="singup" class="head_signupa">singup</a>
                    </div>
                
            </div>
        </div>
    </header>
    
    	
    	<main>
    		<div   id="377j5v51b"   class="Article_Details_main">
    			<div   id="377j5v51b"   class="Article_Details_main1">
    							<div   id="377j5v51b"   class="Article_Details_main1L">
    					<div   id="377j5v51b"   class="Article_Details_main1Lmain" id="Article_Details_main1Lmain">
    						<div   id="377j5v51b"   class="Article_Details_main1L1">Table of Contents</div>
    						<div   id="377j5v51b"   class="Article_Details_main1L2" id="Article_Details_main1L2">
    							<!-- 左側(cè)懸浮,文章定位標(biāo)題1 id="Article_Details_main1L2s_1"-->
    															<div   id="377j5v51b"   class="Article_Details_main1L2s ">
    									<a href="#PHP-框架的主模板-skins-default-templates-main-tpl-php" title="PHP 框架的主模板 (skins/default/templates/main.tpl.php)" >PHP 框架的主模板 (skins/default/templates/main.tpl.php)</a>
    								</div>
    																<div   id="377j5v51b"   class="Article_Details_main1L2s ">
    									<a href="#PHP-框架的頁腳模板-skins-default-templates-footer-tpl-php" title="PHP 框架的頁腳模板 (skins/default/templates/footer.tpl.php)" >PHP 框架的頁腳模板 (skins/default/templates/footer.tpl.php)</a>
    								</div>
    														</div>
    					</div>
    				</div>
    							<div   id="377j5v51b"   class="Article_Details_main1M">
    					<div   id="377j5v51b"   class="phpgenera_Details_mainL1">
    						<a href="http://m.miracleart.cn/" title="Home"
    							class="phpgenera_Details_mainL1a">Home</a>
    						<img src="/static/imghw/top_right.png" alt="" />
    												<a href="http://m.miracleart.cn/be/"
    							class="phpgenera_Details_mainL1a">Backend Development</a>
    						<img src="/static/imghw/top_right.png" alt="" />
    												<a href="http://m.miracleart.cn/php-weizijiaocheng.html"
    							class="phpgenera_Details_mainL1a">PHP Tutorial</a>
    						<img src="/static/imghw/top_right.png" alt="" />
    						<span>Building a PHP5 framework: Part 3</span>
    					</div>
    					
    					<div   id="377j5v51b"   class="Articlelist_txts">
    						<div   id="377j5v51b"   class="Articlelist_txts_info">
    							<h1 class="Articlelist_txts_title">Building a PHP5 framework: Part 3</h1>
    							<div   id="377j5v51b"   class="Articlelist_txts_info_head">
    								<div   id="377j5v51b"   class="author_info">
    									<a href="http://m.miracleart.cn/member/465014.html"  class="author_avatar">
    									<img class="lazy"  data-src="https://img.php.cn/upload/avatar/000/465/014/627b58ba8fa6c600.jpg" src="/static/imghw/default1.png" alt="王林">
    									</a>
    									<div   id="377j5v51b"   class="author_detail">
    																			<a href="http://m.miracleart.cn/member/465014.html" class="author_name">王林</a>
                                    										</div>
    								</div>
                    			</div>
    							<span id="377j5v51b"    class="Articlelist_txts_time">Sep 03, 2023 am	 11:09 AM</span>
    															<div   id="377j5v51b"   class="Articlelist_txts_infos">
    																			<span id="377j5v51b"    class="Articlelist_txts_infoss on">php</span>
    																			<span id="377j5v51b"    class="Articlelist_txts_infoss ">frame</span>
    																			<span id="377j5v51b"    class="Articlelist_txts_infoss ">Construct</span>
    																	</div>
    														
    						</div>
    					</div>
    					<hr />
    					<div   id="377j5v51b"   class="article_main php-article">
    						<div   id="377j5v51b"   class="article-list-left detail-content-wrap content">
    						<ins class="adsbygoogle"
    							style="display:block; text-align:center;"
    							data-ad-layout="in-article"
    							data-ad-format="fluid"
    							data-ad-client="ca-pub-5902227090019525"
    							data-ad-slot="3461856641">
    						</ins>
    						
    
    					<p></p>
    <div   id="377j5v51b"   class="content-block-wysi" content-block-type="Wysi">
    <p>
    Now that we have a basic framework (see Part 1 and Part 2 of this series), we can start thinking about integrating the design with a PHP framework. Now, we'll focus on the front-end design, including how to easily "skin" our new framework. <strong>
    </strong></p>
    <p>How it all fits together</p>
    <h3>
    So far we have the core files in a logical structure and the core set of objects accessed by the registry. One of these objects is our template handler, which allows us to easily build and generate HTML output. The output is built from a series of files, including images, CSS, and templates that make up the "skin." </h3>
    <p>Step 1: What is needed for our framework front-end design</p>
    <h3>
    A generic front-end design for a template can be difficult to get right. It's useful if you design a basic HTML template that contains all the content for any website you might create using the framework. The minimum I'm considering is: </h3>
    <p>
    </p>Main content area, we call it
    <pre class='brush:php;toolbar:false;'>#content
    </pre>
    <ul>.<li>
    <p>
    </p>One or two columns of content are not as important as
    <pre class='brush:php;toolbar:false;'>#content
    </pre>
    </li>.<li>
    <p>
    </p>Some tabular data. </li>
    <li>Unordered and ordered lists (the same goes for definition lists, if you're likely to use that). </li>
    <li>image. I find it useful to add a separate style for photos, which I identify as the "photo" class in HTML; for example </li>. <li>
    <img src="/static/imghw/default1.png"  data-src="https://img.php.cn/upload/article/000/465/014/169371056055629.jpg"  class="lazy" alt="Building a PHP5 framework: Part 3" /> Form for data capture. </li>
    <li>
    </li></ul><h4>
    <head>
    We'll start by creating the basic XHTML structure for the page. Let’s start with this section first: </h4>
    <pre class='brush:php;toolbar:false;'><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
    <title>{pagetitle}</title>
    <meta name="description" content="{metadesc}" />
    <meta name="keywords" content="{metakey}" />
    <style type="text/css" title="Default page style" media="screen"><!--@import "skins/fmwk/style.css";--></style>
    <link rel="icon" href="favicon.ico" type="image/x-icon" />
    <link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
    </head>
    <body>
    </pre>
    <p>
    You can change the document type to match, you can even define it in the settings of every website created using the framework, and being able to change the document type is also useful
    </p>
    <pre class='brush:php;toolbar:false;'>lang
    </pre>
    <p>. It can be useful to define the stylesheet as a setting as well, which we will cover in a future tutorial. </p>
    <p>
    Additionally, meta description and meta key attributes can be hard-coded into the skin of every website you create, but it is wise to </p> provide a different set of descriptions and keywords for each page <p> to <strong> prevent Broken pages appear </strong> in Google's supplemental index. <strong>
    </strong>
    The {pagetitle} placeholder will be used to insert the title of the current page into the template. </p>
    <p></p><h4>
    <body>
    Now, we can move on to the body of the template XHTML file to create a generic front-end design for our framework. We'll keep the layout simple for now, assuming that most of the websites we'll create using this framework will use a traditional header, content, columns, and footer scheme. 
    </h4>
    <pre class='brush:php;toolbar:false;'><div id="wrapper">
    <div id="header">
    
    </div>
    <div id="content">
    
    </div><!--/content-->
    <div id="column">
    
    </div><!--/column-->
    
    <div id="footer">
    
    </div><!--/footer-->
    
    </div><!--/wrapper-->
    </body>
    </html>
    </pre>
    <p>Step 2: Basic Content</p>
    <h3>
    As promised, we're going to fill in some basic stuff so that we can style it so that we have at least most of the tags that are likely to appear in a page that's ready to be styled: </h3>
    <pre class='brush:php;toolbar:false;'><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
    <title>{pagetitle}</title>
    <meta name="description" content="{metadesc}" />
    <meta name="keywords" content="{metakey}" />
    <style type="text/css" title="Default page style" media="screen"><!--@import "skins/fmwk/style.css";--></style>
    <link rel="icon" href="favicon.ico" type="image/x-icon" />
    <link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
    </head>
    <body>
    <div id="wrapper">
    <div id="header">
    <h2><a href="#" title="Website name">Website name</a></h2>
    </div>
    <div id="content">
    <h1>{pagetitle}</h1>
    <img class="photo lazy"  src="/static/imghw/default1.png"  data-src="photo.jpg"  alt="Photo test" />
    <p>
    Lorem ipsum dolor sit amet, <strong>consectetuer adipiscing elit</strong>. Quisque urna augue, fringilla quis, pulvinar non, feugiat in, pede. Curabitur vitae pede. Cras vehicula varius tellus. Sed consequat, enim tristique euismod volutpat, <em>tellus magna aliquet risus</em>, id aliquet eros metus at purus. 
    </p>
    <h2>Secondary heading</h2>
    <p>
    Aliquam dictum, nibh eget <a href="#" title="Test link">ullamcorper condimentum</a>, magna turpis placerat pede, tempor facilisis tortor urna commodo turpis. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Cras luctus cursus velit. Nullam imperdiet turpis.
    </p>
    <h3>Tertiary heading</h3>
    <table>
    <tr>
    <th>Heading</th>
    <td>Data</td>
    </tr>
    <tr>
    <th>Heading</th>
    <td>Data</td>
    </tr>
    </table>
    <p>
    <img src="/static/imghw/default1.png"  data-src="image.jpg"  class="lazy" alt="Generic image" />
    Cras a eros eget lorem fermentum malesuada. Phasellus condimentum libero vel lacus. Donec lectus nisl, adipiscing malesuada, sodales tincidunt, sagittis vitae, lacus. Proin nec pede. Maecenas adipiscing adipiscing risus.
    </p>
    </div><!--/content-->
    <div id="column">
    
    <ul>
    <li>List item</li>
    <li>List item</li>
    <li>List item</li>
    </ul>
    
    <ol>
    <li>List item</li>
    <li>List item</li>
    <li>List item</li>
    <li>List item</li>
    </ol>
    
    </div><!--/column-->
    
    <div id="footer">
    <p>
    &copy; Website name, 2008.
    </p>
    </div><!--/footer-->
    
    </div><!--/wrapper-->
    </body>
    </html>
    </pre>
    <p>
    Now the content is ready for some simple styling. </p>
    <p>Step 3: Basic Style</p>
    <h3>
    We first use CSS to reset the margins and padding of elements in the XHTML document: </h3>
    <pre class='brush:php;toolbar:false;'>body, * {
    margin: 0;
    padding 0;
    }
    </pre>
    <p>
    We'll spend some time styling the body element and making sure links in the document are highlighted appropriately: </p>
    <pre class='brush:php;toolbar:false;'>body {
    background: #FFF;
    color: #000;
    font-family: "helvetica", "arial", "verdana", sans-serif;
    font-size: 62.5%;
    }
    
    a, a:active, a:link  {
    color: #1A64AC;
    text-decoration: underline;	
    }
    
    a:visited {
    color: #0D2F4F;
    }
    </pre>
    <p>
    Next, we'll center our design in #wrapper divs and assign each div a faint border so we can see them when styling. </p>
    <pre class='brush:php;toolbar:false;'>#wrapper {
    margin: 0 auto;
    width: 950px;	
    }
    <br />
    #wrapper, #header, #content, #column, #footer {
    border: 1px #DDD solid;
    }
    </pre>
    <p>
    While the CSS above does not centralize this design in Internet Explorer 6, the CSS has been kept basic for maximum flexibility. With a little more CSS, we almost have a complete </p> skeleton design for the front end of the framework<p> - all that's left is some simple positioning:<strong>
    <pre class='brush:php;toolbar:false;'>#column, #content {
    float: left;
    font-size: 125%;
    padding: 5px;
    }
    
    #column {
    width: 200px;
    }
    
    #content {
    margin-left 5px;
    width: 	725px;
    }
    
    #header, #footer {
    clear: both;
    }
    </pre>
    </strong>
    Now all that's left is the image: </p>
    <pre class='brush:php;toolbar:false;'>#column img, #content img {
    border: 2px #DDD solid;
    float: left;
    margin: 0 5px 0 10px;
    }
    img.photo {
    background: #DDD;
    float: right !important;
    padding: 25px 2px;
    }
    </pre>
    <p>
    What we are left with at this stage is a simple website layout that we can use as the basis for a PHP framework front-end: </p>
    <p></p><p>
    <img src="/static/imghw/default1.png"  data-src="https://img.php.cn/upload/article/000/465/014/169371056127053.gif"  class="lazy" alt="Building a PHP5 framework: Part 3" />
    Of course, for extra flexibility it might be useful to allow 2 columns of content by default, which can be done by adding more XHTML and CSS. </p>
    <p>Step 4: Template from XHTML</p>
    <h3>
    The next step is to transfer the XHTML, CSS and images to </h3> a skin<p> suitable for our PHP framework. To do this, we need to split the XHTML into three templates: header, main template, and footer. Due to the way the template system is structured, pages can be generated from any number of templates, but it is recommended to use at least header, footer and main templates, which means that, in general, we only need to copy and change if we want to create a structure slightly If there are different new pages, use the main template file. <strong>
    </strong>Header template for PHP framework (skins/default/templates/header.tpl.php)</p>
    <h4>
    The PHP framework's header template should contain an XHTML section, and </h4><p>
    </p>
    part:<p></p>
    <pre class='brush:php;toolbar:false;'><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
    <title>{pagetitle}</title>
    <meta name="description" content="{metadesc}" />
    <meta name="keywords" content="{metakey}" />
    <style type="text/css" title="Default page style" media="screen"><!--@import "style.css";--></style>
    <link rel="icon" href="favicon.ico" type="image/x-icon" />
    <link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
    </head>
    <body>
    <div id="wrapper">
    <div id="header">
    <h2><a href="#" title="Website name">Website name</a></h2>
    </div>
    </pre>
    <h4 id="PHP-框架的主模板-skins-default-templates-main-tpl-php">PHP 框架的主模板 (skins/default/templates/main.tpl.php)</h4>
    <p>
    主模板應(yīng)包括包含主要內(nèi)容和列中任何內(nèi)容的 div。我們現(xiàn)在可以為此內(nèi)容插入占位符,而不是復(fù)制我們用來設(shè)置段落、有序列表和表格等元素樣式的虛擬文本,占位符將根據(jù)內(nèi)容所在的位置進(jìn)行更新。</p>
    <p>占位符內(nèi)容是:</p>
    <ul>
    <li> {pagetitle} 頁面標(biāo)題。</li>
    <li> {maincontent} 頁面的主要內(nèi)容。</li>
    <li> {btitle} 和 {bcontent} 內(nèi)容塊的標(biāo)題和內(nèi)容。它包含在 rcolumn 循環(huán)中,因此可以在列中放置多個塊。</li>
    </ul>
    <pre class='brush:php;toolbar:false;'><div id="content">
    <h1>{pagetitle}</h1>
    {maincontent}
    </div><!--/content-->
    
    <div id="column">
    <!-- START rcolumn -->
    <h2>{btitle}</h2>
    {bcontent}
    <!-- END rcolumn -->
    </div><!--/column-->
    </pre>
    <h4 id="PHP-框架的頁腳模板-skins-default-templates-footer-tpl-php">PHP 框架的頁腳模板 (skins/default/templates/footer.tpl.php)</h4>
    <p>
    最后,剩余的 XHTML 放入頁腳文件中,該文件關(guān)閉 XHTML 文檔和正文部分。我們通常使用它來在我們的網(wǎng)站上包含版權(quán)聲明和“網(wǎng)頁設(shè)計者”鏈接。</p>
    <pre class='brush:php;toolbar:false;'><div id="footer">
    <p>
    ? Website name, 2008.
    </p>
    </div><!--/footer-->
    
    </div><!--/wrapper-->
    </body>
    </html>
    </pre>
    <p>
    對于我們系列中 PHP 的中斷表示歉意,但為我們的框架和使用它的應(yīng)用程序構(gòu)建皮膚格式的相關(guān)模板非常重要。 <strong>PHP5 框架開發(fā)</strong>系列中的第 4 部分將介紹基本的安全注意事項和基本的身份驗證處理程序,然后我們將繼續(xù)創(chuàng)建內(nèi)容管理模型,并在第 5 部分中研究模型如何組合在一起。該系列中的內(nèi)容:發(fā)送電子郵件、擴(kuò)展我們的框架以及以創(chuàng)新的方式記錄用戶事件流。</p>
    </div>
    <p>The above is the detailed content of Building a PHP5 framework: Part 3. For more information, please follow other related articles on the PHP Chinese website!</p>
    
    
    						</div>
    					</div>
    					<div   id="377j5v51b"   class="wzconShengming_sp">
    						<div   id="377j5v51b"   class="bzsmdiv_sp">Statement of this Website</div>
    						<div>The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact 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>
    
    
    
    				<div   id="377j5v51b"   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>
        
    
    
    					<!-- <div   id="377j5v51b"   class="phpgenera_Details_mainR4">
    						<div   id="377j5v51b"   class="phpmain1_4R_readrank">
    							<div   id="377j5v51b"   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>Hot Article</h2>
    							</div>
    							<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottom">
    															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://m.miracleart.cn/faq/1796832397.html" title="Grass Wonder Build Guide | Uma Musume Pretty Derby" class="phpgenera_Details_mainR4_bottom_title">Grass Wonder Build Guide | Uma Musume Pretty Derby</a>
    									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
    										<span>1 months ago</span>
    										<span>By Jack chen</span>
    									</div>
    								</div>
    															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://m.miracleart.cn/faq/1796833110.html" title="Roblox: 99 Nights In The Forest - All Badges And How To Unlock Them" class="phpgenera_Details_mainR4_bottom_title">Roblox: 99 Nights In The Forest - All Badges And How To Unlock Them</a>
    									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
    										<span>4 weeks ago</span>
    										<span>By DDD</span>
    									</div>
    								</div>
    															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://m.miracleart.cn/faq/1796831605.html" title="Uma Musume Pretty Derby Banner Schedule (July 2025)" class="phpgenera_Details_mainR4_bottom_title">Uma Musume Pretty Derby Banner Schedule (July 2025)</a>
    									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
    										<span>1 months ago</span>
    										<span>By Jack chen</span>
    									</div>
    								</div>
    															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://m.miracleart.cn/faq/1796836699.html" title="RimWorld Odyssey Temperature Guide for Ships and Gravtech" class="phpgenera_Details_mainR4_bottom_title">RimWorld Odyssey Temperature Guide for Ships and Gravtech</a>
    									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
    										<span>3 weeks ago</span>
    										<span>By Jack chen</span>
    									</div>
    								</div>
    															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://m.miracleart.cn/faq/1796831905.html" title="Windows Security is blank or not showing options" class="phpgenera_Details_mainR4_bottom_title">Windows Security is blank or not showing options</a>
    									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
    										<span>1 months ago</span>
    										<span>By 下次還敢</span>
    									</div>
    								</div>
    														</div>
    							<div   id="377j5v51b"   class="phpgenera_Details_mainR3_more">
    								<a href="http://m.miracleart.cn/article.html">Show More</a>
    							</div>
    						</div>
    					</div> -->
    
    
    											<div   id="377j5v51b"   class="phpgenera_Details_mainR3">
    							<div   id="377j5v51b"   class="phpmain1_4R_readrank">
    								<div   id="377j5v51b"   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>Hot AI Tools</h2>
    								</div>
    								<div   id="377j5v51b"   class="phpgenera_Details_mainR3_bottom">
    																		<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
    											<a href="http://m.miracleart.cn/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   id="377j5v51b"   class="phpmain_tab2_mids_info">
    												<a href="http://m.miracleart.cn/ai/undress-ai-tool" title="Undress AI Tool" class="phpmain_tab2_mids_title">
    													<h3>Undress AI Tool</h3>
    												</a>
    												<p>Undress images for free</p>
    											</div>
    										</div>
    																		<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
    											<a href="http://m.miracleart.cn/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   id="377j5v51b"   class="phpmain_tab2_mids_info">
    												<a href="http://m.miracleart.cn/ai/undresserai-undress" title="Undresser.AI Undress" class="phpmain_tab2_mids_title">
    													<h3>Undresser.AI Undress</h3>
    												</a>
    												<p>AI-powered app for creating realistic nude photos</p>
    											</div>
    										</div>
    																		<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
    											<a href="http://m.miracleart.cn/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   id="377j5v51b"   class="phpmain_tab2_mids_info">
    												<a href="http://m.miracleart.cn/ai/ai-clothes-remover" title="AI Clothes Remover" class="phpmain_tab2_mids_title">
    													<h3>AI Clothes Remover</h3>
    												</a>
    												<p>Online AI tool for removing clothes from photos.</p>
    											</div>
    										</div>
    																		<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
    											<a href="http://m.miracleart.cn/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   id="377j5v51b"   class="phpmain_tab2_mids_info">
    												<a href="http://m.miracleart.cn/ai/clothoffio" title="Clothoff.io" class="phpmain_tab2_mids_title">
    													<h3>Clothoff.io</h3>
    												</a>
    												<p>AI clothes remover</p>
    											</div>
    										</div>
    																		<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
    											<a href="http://m.miracleart.cn/ai/video-swap" title="Video Face Swap" 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/173414504068133.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="Video Face Swap" />
    											</a>
    											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
    												<a href="http://m.miracleart.cn/ai/video-swap" title="Video Face Swap" class="phpmain_tab2_mids_title">
    													<h3>Video Face Swap</h3>
    												</a>
    												<p>Swap faces in any video effortlessly with our completely free AI face swap tool!</p>
    											</div>
    										</div>
    																</div>
    								<div   id="377j5v51b"   class="phpgenera_Details_mainR3_more">
    									<a href="http://m.miracleart.cn/ai">Show More</a>
    								</div>
    							</div>
    						</div>
    					
    
    
    					<div   id="377j5v51b"   class="phpgenera_Details_mainR4">
    						<div   id="377j5v51b"   class="phpmain1_4R_readrank">
    							<div   id="377j5v51b"   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>Hot Article</h2>
    							</div>
    							<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottom">
    															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://m.miracleart.cn/faq/1796832397.html" title="Grass Wonder Build Guide | Uma Musume Pretty Derby" class="phpgenera_Details_mainR4_bottom_title">Grass Wonder Build Guide | Uma Musume Pretty Derby</a>
    									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
    										<span>1 months ago</span>
    										<span>By Jack chen</span>
    									</div>
    								</div>
    															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://m.miracleart.cn/faq/1796833110.html" title="Roblox: 99 Nights In The Forest - All Badges And How To Unlock Them" class="phpgenera_Details_mainR4_bottom_title">Roblox: 99 Nights In The Forest - All Badges And How To Unlock Them</a>
    									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
    										<span>4 weeks ago</span>
    										<span>By DDD</span>
    									</div>
    								</div>
    															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://m.miracleart.cn/faq/1796831605.html" title="Uma Musume Pretty Derby Banner Schedule (July 2025)" class="phpgenera_Details_mainR4_bottom_title">Uma Musume Pretty Derby Banner Schedule (July 2025)</a>
    									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
    										<span>1 months ago</span>
    										<span>By Jack chen</span>
    									</div>
    								</div>
    															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://m.miracleart.cn/faq/1796836699.html" title="RimWorld Odyssey Temperature Guide for Ships and Gravtech" class="phpgenera_Details_mainR4_bottom_title">RimWorld Odyssey Temperature Guide for Ships and Gravtech</a>
    									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
    										<span>3 weeks ago</span>
    										<span>By Jack chen</span>
    									</div>
    								</div>
    															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://m.miracleart.cn/faq/1796831905.html" title="Windows Security is blank or not showing options" class="phpgenera_Details_mainR4_bottom_title">Windows Security is blank or not showing options</a>
    									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
    										<span>1 months ago</span>
    										<span>By 下次還敢</span>
    									</div>
    								</div>
    														</div>
    							<div   id="377j5v51b"   class="phpgenera_Details_mainR3_more">
    								<a href="http://m.miracleart.cn/article.html">Show More</a>
    							</div>
    						</div>
    					</div>
    
    
    											<div   id="377j5v51b"   class="phpgenera_Details_mainR3">
    							<div   id="377j5v51b"   class="phpmain1_4R_readrank">
    								<div   id="377j5v51b"   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>Hot Tools</h2>
    								</div>
    								<div   id="377j5v51b"   class="phpgenera_Details_mainR3_bottom">
    																		<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
    											<a href="http://m.miracleart.cn/toolset/development-tools/92" title="Notepad++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="Notepad++7.3.1" />
    											</a>
    											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
    												<a href="http://m.miracleart.cn/toolset/development-tools/92" title="Notepad++7.3.1" class="phpmain_tab2_mids_title">
    													<h3>Notepad++7.3.1</h3>
    												</a>
    												<p>Easy-to-use and free code editor</p>
    											</div>
    										</div>
    																			<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
    											<a href="http://m.miracleart.cn/toolset/development-tools/93" title="SublimeText3 Chinese version" 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 Chinese version" />
    											</a>
    											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
    												<a href="http://m.miracleart.cn/toolset/development-tools/93" title="SublimeText3 Chinese version" class="phpmain_tab2_mids_title">
    													<h3>SublimeText3 Chinese version</h3>
    												</a>
    												<p>Chinese version, very easy to use</p>
    											</div>
    										</div>
    																			<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
    											<a href="http://m.miracleart.cn/toolset/development-tools/121" title="Zend Studio 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="Zend Studio 13.0.1" />
    											</a>
    											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
    												<a href="http://m.miracleart.cn/toolset/development-tools/121" title="Zend Studio 13.0.1" class="phpmain_tab2_mids_title">
    													<h3>Zend Studio 13.0.1</h3>
    												</a>
    												<p>Powerful PHP integrated development environment</p>
    											</div>
    										</div>
    																			<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
    											<a href="http://m.miracleart.cn/toolset/development-tools/469" title="Dreamweaver 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="Dreamweaver CS6" />
    											</a>
    											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
    												<a href="http://m.miracleart.cn/toolset/development-tools/469" title="Dreamweaver CS6" class="phpmain_tab2_mids_title">
    													<h3>Dreamweaver CS6</h3>
    												</a>
    												<p>Visual web development tools</p>
    											</div>
    										</div>
    																			<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
    											<a href="http://m.miracleart.cn/toolset/development-tools/500" title="SublimeText3 Mac version" 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 version" />
    											</a>
    											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
    												<a href="http://m.miracleart.cn/toolset/development-tools/500" title="SublimeText3 Mac version" class="phpmain_tab2_mids_title">
    													<h3>SublimeText3 Mac version</h3>
    												</a>
    												<p>God-level code editing software (SublimeText3)</p>
    											</div>
    										</div>
    																	</div>
    								<div   id="377j5v51b"   class="phpgenera_Details_mainR3_more">
    									<a href="http://m.miracleart.cn/ai">Show More</a>
    								</div>
    							</div>
    						</div>
    										
    
    					
    					<div   id="377j5v51b"   class="phpgenera_Details_mainR4">
    						<div   id="377j5v51b"   class="phpmain1_4R_readrank">
    							<div   id="377j5v51b"   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>Hot Topics</h2>
    							</div>
    							<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottom">
    															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://m.miracleart.cn/faq/laravel-tutori" title="Laravel Tutorial" class="phpgenera_Details_mainR4_bottom_title">Laravel Tutorial</a>
    									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
    										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
    											<img src="/static/imghw/eyess.png" alt="" />
    											<span>1601</span>
    										</div>
    										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
    											<img src="/static/imghw/tiezi.png" alt="" />
    											<span>29</span>
    										</div>
    									</div>
    								</div>
    															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
    									<a href="http://m.miracleart.cn/faq/php-tutorial" title="PHP Tutorial" class="phpgenera_Details_mainR4_bottom_title">PHP Tutorial</a>
    									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
    										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
    											<img src="/static/imghw/eyess.png" alt="" />
    											<span>1502</span>
    										</div>
    										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
    											<img src="/static/imghw/tiezi.png" alt="" />
    											<span>276</span>
    										</div>
    									</div>
    								</div>
    														</div>
    							<div   id="377j5v51b"   class="phpgenera_Details_mainR3_more">
    								<a href="http://m.miracleart.cn/faq/zt">Show More</a>
    							</div>
    						</div>
    					</div>
    				</div>
    			</div>
    							<div   id="377j5v51b"   class="Article_Details_main2">
    					<div   id="377j5v51b"   class="phpgenera_Details_mainL4">
    						<div   id="377j5v51b"   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   id="377j5v51b"   class="phpgenera_Details_mainL4_info">
    
    													<div   id="377j5v51b"   class="phphistorical_Version2_mids">
    								<a href="http://m.miracleart.cn/faq/1796846916.html" title="PHP calls AI intelligent voice assistant PHP voice interaction system construction" 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/001/503/042/175318512535508.jpeg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="PHP calls AI intelligent voice assistant PHP voice interaction system construction" />
    								</a>
    								<a href="http://m.miracleart.cn/faq/1796846916.html" title="PHP calls AI intelligent voice assistant PHP voice interaction system construction" class="phphistorical_Version2_mids_title">PHP calls AI intelligent voice assistant PHP voice interaction system construction</a>
    								<span id="377j5v51b"    class="Articlelist_txts_time">Jul 25, 2025 pm	 08:45 PM</span>
    								<p class="Articlelist_txts_p">User voice input is captured and sent to the PHP backend through the MediaRecorder API of the front-end JavaScript; 2. PHP saves the audio as a temporary file and calls STTAPI (such as Google or Baidu voice recognition) to convert it into text; 3. PHP sends the text to an AI service (such as OpenAIGPT) to obtain intelligent reply; 4. PHP then calls TTSAPI (such as Baidu or Google voice synthesis) to convert the reply to a voice file; 5. PHP streams the voice file back to the front-end to play, completing interaction. The entire process is dominated by PHP to ensure seamless connection between all links.</p>
    							</div>
    														<div   id="377j5v51b"   class="phphistorical_Version2_mids">
    								<a href="http://m.miracleart.cn/faq/1796846918.html" title="How to use PHP to build social sharing functions PHP sharing interface integration practice" 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/001/503/042/175318476518239.png?x-oss-process=image/resize,m_fill,h_207,w_330" alt="How to use PHP to build social sharing functions PHP sharing interface integration practice" />
    								</a>
    								<a href="http://m.miracleart.cn/faq/1796846918.html" title="How to use PHP to build social sharing functions PHP sharing interface integration practice" class="phphistorical_Version2_mids_title">How to use PHP to build social sharing functions PHP sharing interface integration practice</a>
    								<span id="377j5v51b"    class="Articlelist_txts_time">Jul 25, 2025 pm	 08:51 PM</span>
    								<p class="Articlelist_txts_p">The core method of building social sharing functions in PHP is to dynamically generate sharing links that meet the requirements of each platform. 1. First get the current page or specified URL and article information; 2. Use urlencode to encode the parameters; 3. Splice and generate sharing links according to the protocols of each platform; 4. Display links on the front end for users to click and share; 5. Dynamically generate OG tags on the page to optimize sharing content display; 6. Be sure to escape user input to prevent XSS attacks. This method does not require complex authentication, has low maintenance costs, and is suitable for most content sharing needs.</p>
    							</div>
    														<div   id="377j5v51b"   class="phphistorical_Version2_mids">
    								<a href="http://m.miracleart.cn/faq/1796846920.html" title="How to use PHP combined with AI to achieve text error correction PHP syntax detection and optimization" 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/001/503/042/175318452251625.jpeg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="How to use PHP combined with AI to achieve text error correction PHP syntax detection and optimization" />
    								</a>
    								<a href="http://m.miracleart.cn/faq/1796846920.html" title="How to use PHP combined with AI to achieve text error correction PHP syntax detection and optimization" class="phphistorical_Version2_mids_title">How to use PHP combined with AI to achieve text error correction PHP syntax detection and optimization</a>
    								<span id="377j5v51b"    class="Articlelist_txts_time">Jul 25, 2025 pm	 08:57 PM</span>
    								<p class="Articlelist_txts_p">To realize text error correction and syntax optimization with AI, you need to follow the following steps: 1. Select a suitable AI model or API, such as Baidu, Tencent API or open source NLP library; 2. Call the API through PHP's curl or Guzzle and process the return results; 3. Display error correction information in the application and allow users to choose whether to adopt it; 4. Use php-l and PHP_CodeSniffer for syntax detection and code optimization; 5. Continuously collect feedback and update the model or rules to improve the effect. When choosing AIAPI, focus on evaluating accuracy, response speed, price and support for PHP. Code optimization should follow PSR specifications, use cache reasonably, avoid circular queries, review code regularly, and use X</p>
    							</div>
    														<div   id="377j5v51b"   class="phphistorical_Version2_mids">
    								<a href="http://m.miracleart.cn/faq/1796846910.html" title="PHP creates a blog comment system to monetize PHP comment review and anti-brush strategy" 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/001/503/042/175324698785730.png?x-oss-process=image/resize,m_fill,h_207,w_330" alt="PHP creates a blog comment system to monetize PHP comment review and anti-brush strategy" />
    								</a>
    								<a href="http://m.miracleart.cn/faq/1796846910.html" title="PHP creates a blog comment system to monetize PHP comment review and anti-brush strategy" class="phphistorical_Version2_mids_title">PHP creates a blog comment system to monetize PHP comment review and anti-brush strategy</a>
    								<span id="377j5v51b"    class="Articlelist_txts_time">Jul 25, 2025 pm	 08:27 PM</span>
    								<p class="Articlelist_txts_p">1. Maximizing the commercial value of the comment system requires combining native advertising precise delivery, user paid value-added services (such as uploading pictures, top-up comments), influence incentive mechanism based on comment quality, and compliance anonymous data insight monetization; 2. The audit strategy should adopt a combination of pre-audit dynamic keyword filtering and user reporting mechanisms, supplemented by comment quality rating to achieve content hierarchical exposure; 3. Anti-brushing requires the construction of multi-layer defense: reCAPTCHAv3 sensorless verification, Honeypot honeypot field recognition robot, IP and timestamp frequency limit prevents watering, and content pattern recognition marks suspicious comments, and continuously iterate to deal with attacks.</p>
    							</div>
    														<div   id="377j5v51b"   class="phphistorical_Version2_mids">
    								<a href="http://m.miracleart.cn/faq/1796846888.html" title="How to use PHP to combine AI to generate image. PHP automatically generates art works" 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/001/503/042/175326835276962.png?x-oss-process=image/resize,m_fill,h_207,w_330" alt="How to use PHP to combine AI to generate image. PHP automatically generates art works" />
    								</a>
    								<a href="http://m.miracleart.cn/faq/1796846888.html" title="How to use PHP to combine AI to generate image. PHP automatically generates art works" class="phphistorical_Version2_mids_title">How to use PHP to combine AI to generate image. PHP automatically generates art works</a>
    								<span id="377j5v51b"    class="Articlelist_txts_time">Jul 25, 2025 pm	 07:21 PM</span>
    								<p class="Articlelist_txts_p">PHP does not directly perform AI image processing, but integrates through APIs, because it is good at web development rather than computing-intensive tasks. API integration can achieve professional division of labor, reduce costs, and improve efficiency; 2. Integrating key technologies include using Guzzle or cURL to send HTTP requests, JSON data encoding and decoding, API key security authentication, asynchronous queue processing time-consuming tasks, robust error handling and retry mechanism, image storage and display; 3. Common challenges include API cost out of control, uncontrollable generation results, poor user experience, security risks and difficult data management. The response strategies are setting user quotas and caches, providing propt guidance and multi-picture selection, asynchronous notifications and progress prompts, key environment variable storage and content audit, and cloud storage.</p>
    							</div>
    														<div   id="377j5v51b"   class="phphistorical_Version2_mids">
    								<a href="http://m.miracleart.cn/faq/1796846911.html" title="PHP realizes commodity inventory management and monetization PHP inventory synchronization and alarm mechanism" 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/001/503/042/175324572958058.png?x-oss-process=image/resize,m_fill,h_207,w_330" alt="PHP realizes commodity inventory management and monetization PHP inventory synchronization and alarm mechanism" />
    								</a>
    								<a href="http://m.miracleart.cn/faq/1796846911.html" title="PHP realizes commodity inventory management and monetization PHP inventory synchronization and alarm mechanism" class="phphistorical_Version2_mids_title">PHP realizes commodity inventory management and monetization PHP inventory synchronization and alarm mechanism</a>
    								<span id="377j5v51b"    class="Articlelist_txts_time">Jul 25, 2025 pm	 08:30 PM</span>
    								<p class="Articlelist_txts_p">PHP ensures inventory deduction atomicity through database transactions and FORUPDATE row locks to prevent high concurrent overselling; 2. Multi-platform inventory consistency depends on centralized management and event-driven synchronization, combining API/Webhook notifications and message queues to ensure reliable data transmission; 3. The alarm mechanism should set low inventory, zero/negative inventory, unsalable sales, replenishment cycles and abnormal fluctuations strategies in different scenarios, and select DingTalk, SMS or Email Responsible Persons according to the urgency, and the alarm information must be complete and clear to achieve business adaptation and rapid response.</p>
    							</div>
    														<div   id="377j5v51b"   class="phphistorical_Version2_mids">
    								<a href="http://m.miracleart.cn/faq/1796848711.html" title="Beyond the LAMP Stack: PHP's Role in Modern Enterprise Architecture" 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/001/253/068/175356191176507.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="Beyond the LAMP Stack: PHP's Role in Modern Enterprise Architecture" />
    								</a>
    								<a href="http://m.miracleart.cn/faq/1796848711.html" title="Beyond the LAMP Stack: PHP's Role in Modern Enterprise Architecture" class="phphistorical_Version2_mids_title">Beyond the LAMP Stack: PHP's Role in Modern Enterprise Architecture</a>
    								<span id="377j5v51b"    class="Articlelist_txts_time">Jul 27, 2025 am	 04:31 AM</span>
    								<p class="Articlelist_txts_p">PHPisstillrelevantinmodernenterpriseenvironments.1.ModernPHP(7.xand8.x)offersperformancegains,stricttyping,JITcompilation,andmodernsyntax,makingitsuitableforlarge-scaleapplications.2.PHPintegrateseffectivelyinhybridarchitectures,servingasanAPIgateway</p>
    							</div>
    														<div   id="377j5v51b"   class="phphistorical_Version2_mids">
    								<a href="http://m.miracleart.cn/faq/1796846883.html" title="PHP integrated AI speech recognition and translator PHP meeting record automatic generation solution" 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/001/503/042/175326984626664.jpeg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="PHP integrated AI speech recognition and translator PHP meeting record automatic generation solution" />
    								</a>
    								<a href="http://m.miracleart.cn/faq/1796846883.html" title="PHP integrated AI speech recognition and translator PHP meeting record automatic generation solution" class="phphistorical_Version2_mids_title">PHP integrated AI speech recognition and translator PHP meeting record automatic generation solution</a>
    								<span id="377j5v51b"    class="Articlelist_txts_time">Jul 25, 2025 pm	 07:06 PM</span>
    								<p class="Articlelist_txts_p">Select the appropriate AI voice recognition service and integrate PHPSDK; 2. Use PHP to call ffmpeg to convert recordings into API-required formats (such as wav); 3. Upload files to cloud storage and call API asynchronous recognition; 4. Analyze JSON results and organize text using NLP technology; 5. Generate Word or Markdown documents to complete the automation of meeting records. The entire process needs to ensure data encryption, access control and compliance to ensure privacy and security.</p>
    							</div>
    													</div>
    
    													<a href="http://m.miracleart.cn/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   id="377j5v51b"   class="footer">
            <div   id="377j5v51b"   class="footertop">
                <img src="/static/imghw/logo.png" alt="">
                <p>Public welfare online PHP training,Help PHP learners grow quickly!</p>
            </div>
            <div   id="377j5v51b"   class="footermid">
                <a href="http://m.miracleart.cn/about/us.html">About us</a>
                <a href="http://m.miracleart.cn/about/disclaimer.html">Disclaimer</a>
                <a href="http://m.miracleart.cn/update/article_0_1.html">Sitemap</a>
            </div>
            <div   id="377j5v51b"   class="footerbottom">
                <p>
                    ? php.cn All rights reserved
                </p>
            </div>
        </div>
    </footer>
    
    <input type="hidden" id="verifycode" value="/captcha.html">
    
    
    
    
    		<link rel='stylesheet' id='_main-css' href='/static/css/viewer.min.css?2' type='text/css' media='all' />
    	
    	
    	
    	
    	
    
    	
    	
    
    
    
    
    
    <footer>
    <div class="friendship-link">
    <p>感谢您访问我们的网站,您可能还对以下资源感兴趣:</p>
    <a href="http://m.miracleart.cn/" title="国产av日韩一区二区三区精品">国产av日韩一区二区三区精品</a>
    
    <div class="friend-links">
    
    
    </div>
    </div>
    
    </footer>
    
    
    <script>
    (function(){
        var bp = document.createElement('script');
        var curProtocol = window.location.protocol.split(':')[0];
        if (curProtocol === 'https') {
            bp.src = 'https://zz.bdstatic.com/linksubmit/push.js';
        }
        else {
            bp.src = 'http://push.zhanzhang.baidu.com/push.js';
        }
        var s = document.getElementsByTagName("script")[0];
        s.parentNode.insertBefore(bp, s);
    })();
    </script>
    </body><div id="n55bs" class="pl_css_ganrao" style="display: none;"><tfoot id="n55bs"><strong id="n55bs"></strong></tfoot><pre id="n55bs"></pre><dfn id="n55bs"><optgroup id="n55bs"></optgroup></dfn><pre id="n55bs"><i id="n55bs"></i></pre><strike id="n55bs"><small id="n55bs"><tfoot id="n55bs"><object id="n55bs"></object></tfoot></small></strike><noframes id="n55bs"></noframes><delect id="n55bs"></delect><center id="n55bs"><label id="n55bs"><video id="n55bs"><style id="n55bs"></style></video></label></center><table id="n55bs"><fieldset id="n55bs"><del id="n55bs"></del></fieldset></table><s id="n55bs"></s><center id="n55bs"></center><fieldset id="n55bs"></fieldset><rt id="n55bs"><pre id="n55bs"></pre></rt><legend id="n55bs"></legend><tbody id="n55bs"><li id="n55bs"><acronym id="n55bs"></acronym></li></tbody><center id="n55bs"></center><ol id="n55bs"><strong id="n55bs"></strong></ol><tt id="n55bs"><th id="n55bs"></th></tt><object id="n55bs"></object><abbr id="n55bs"></abbr><dl id="n55bs"></dl><sup id="n55bs"><wbr id="n55bs"><option id="n55bs"></option></wbr></sup><bdo id="n55bs"><wbr id="n55bs"><nobr id="n55bs"><blockquote id="n55bs"></blockquote></nobr></wbr></bdo><th id="n55bs"><optgroup id="n55bs"></optgroup></th><sup id="n55bs"></sup><abbr id="n55bs"><xmp id="n55bs"><table id="n55bs"></table></xmp></abbr><tr id="n55bs"><object id="n55bs"><dfn id="n55bs"></dfn></object></tr><div id="n55bs"></div><legend id="n55bs"></legend><rt id="n55bs"></rt><dfn id="n55bs"></dfn><blockquote id="n55bs"></blockquote><acronym id="n55bs"></acronym><rt id="n55bs"><small id="n55bs"><option id="n55bs"></option></small></rt><style id="n55bs"><dfn id="n55bs"><tbody id="n55bs"></tbody></dfn></style><acronym id="n55bs"></acronym><dl id="n55bs"></dl><small id="n55bs"><pre id="n55bs"><bdo id="n55bs"></bdo></pre></small><delect id="n55bs"><ruby id="n55bs"><wbr id="n55bs"></wbr></ruby></delect><small id="n55bs"></small><td id="n55bs"><video id="n55bs"><center id="n55bs"><track id="n55bs"></track></center></video></td><font id="n55bs"><bdo id="n55bs"></bdo></font><tbody id="n55bs"><menu id="n55bs"><pre id="n55bs"><input id="n55bs"></input></pre></menu></tbody><b id="n55bs"></b><button id="n55bs"></button><rt id="n55bs"></rt><address id="n55bs"><rp id="n55bs"><td id="n55bs"></td></rp></address><abbr id="n55bs"></abbr><abbr id="n55bs"></abbr><thead id="n55bs"><cite id="n55bs"><dd id="n55bs"></dd></cite></thead></div>
    
    </html>