{"id":1116,"date":"2019-09-29T00:04:11","date_gmt":"2019-09-28T16:04:11","guid":{"rendered":"https:\/\/wyxxt.org.cn\/?p=1116"},"modified":"2023-12-04T15:51:59","modified_gmt":"2023-12-04T07:51:59","slug":"php%e7%bb%86%e8%8a%82%e7%9f%a5%e8%af%86%e7%82%b9","status":"publish","type":"post","link":"https:\/\/wyxxt.org.cn\/?p=1116","title":{"rendered":"PHP\u7ec6\u8282\u77e5\u8bc6\u70b9"},"content":{"rendered":"<h3>include\u548crequire\u7684\u533a\u522b<\/h3>\n<p>include\u662f\u6709\u6761\u4ef6\u5305\u542b<br \/>\nrequire\u662f\u65e0\u6761\u4ef6\u5305\u542b<\/p>\n<pre><code class=\"language-php line-numbers\">if($something) {\n    include('somefile.txt'); \/\/\u6761\u4ef6\u6ee1\u8db3\u662f\u5305\u542b\n}\n\nif($something) {\n    require('somefile.txt'); \/\/\u4e0d\u7ba1\u5224\u65ad\u662f\u5426\u9b4f\u771f\uff0c\u90fd\u5305\u542b\n}\n<\/code><\/pre>\n<h3>\u811a\u672c\u5f00\u59cb\u6267\u884c\u65f6\u523b<\/h3>\n<p>$_SERVER[&#8216;REQUEST_TIME&#8217;]\u597d\u4e8etime()<\/p>\n<h3>$row[&#8216;id&#8217;]\u7684\u901f\u5ea6\u662f$row[id]\u76847\u500d<\/h3>\n<h3>\u8bf7\u6c42\u53c2\u6570\u6355\u83b7<\/h3>\n<ul>\n<li>get\u8bf7\u6c42<\/li>\n<\/ul>\n<pre><code class=\"language-php line-numbers\">$_GET \/\/\u6570\u7ec4\n<\/code><\/pre>\n<ul>\n<li>post\u8bf7\u6c42(\u975e\u6587\u4ef6\u4e0a\u4f20)<\/li>\n<\/ul>\n<pre><code class=\"language-php line-numbers\">$data = file_get_contents(\"php:\/\/input\"); \/\/\u8f93\u5165\u6d41\njson_decode($data, true) \/\/ \u6570\u7ec4\n<\/code><\/pre>\n<ul>\n<li>\u6587\u4ef6\u4e0a\u4f20<\/li>\n<\/ul>\n<pre><code class=\"language-php line-numbers\">$_FILES\/\/\u6570\u7ec4\n<\/code><\/pre>\n<h3>php:\/\/output\u8f93\u51fa\u6d41<\/h3>\n<pre><code class=\"language-php line-numbers\">&lt;?php\n$output = fopen('php:\/\/output', 'w');\nfwrite($output, '111');\nfclose($output);\n\/\/2 Http\u6a21\u5f0f\u901a\u8fc7php:\/\/output\u5bfc\u51facsv\u6587\u4ef6\n\/\/\u6ce8\u610f \u4ee5UTF8\u7f16\u7801\u5bfc\u51faCSV\u6587\u4ef6\uff0c\u5982\u679c\u6587\u4ef6\u5934\u672a\u6dfb\u52a0BOM\u5934\uff0c\u4f7f\u7528Excel\u6253\u5f00\u4f1a\u51fa\u73b0\u4e71\u7801\n&lt;?php\nheader('Content-Type: application\/csv');\nheader('Content-Disposition: attachment; filename=\"test.csv\"');\n$output = fopen('php:\/\/output','w') or die(\"Can't open php:\/\/output\"); \n\/\/UTF8 csv\u6587\u4ef6\u5934\u524d\u9700\u6dfb\u52a0BOM\uff0c\u4e0d\u7136\u4f1a\u662f\u4e71\u7801\nfwrite($output, chr(0xEF).chr(0xBB).chr(0xBF)); \n\/\/ \u8f93\u51fa\u6807\u9898\u884c\nfputcsv($output, array('\u7ad9\u70b9\u540d', '\u57df\u540d', '\u884c\u4e1a')); \n\/\/\u6570\u636e\u5185\u5bb9\n$rows = array(\n    array(\u2018111', 'http:\/\/tmall.com', '\u7535\u5b50\u5546\u52a1') ,\n    array(\u2018222', 'http:\/\/aiezu.com', '\u4e92\u8054\u7f51\u6280\u672f') ,\n    array(\u2018333', 'http:\/\/qq.com', '\u793e\u4ea4\u7f51\u7edc\u2019)\n);\nforeach($rows as $row) {\n    fputcsv($output, $row);\n}\nfclose($output) or die(\"Can't close php:\/\/output\u201d);\n<\/code><\/pre>\n<h3>tp5.0.24\u4f18\u5316<\/h3>\n<ul>\n<li>\u6570\u636e\u5e93\u8868\u7ed3\u6784\u7f13\u5b58  \u6210\u529f\u4e4b\u540e\u4f1a\u5728 runtime \u76ee\u5f55\u4e0b\u751f\u6210\u4e00\u4e2aschema\u76ee\u5f55 \u76ee\u5f55\u4e0b\u6309\u7167database.table.php\u7684\u7f13\u5b58\u6587\u4ef6<\/li>\n<\/ul>\n<h1>php think optimize:schema<\/h1>\n<ul>\n<li>\u751f\u6210\u8def\u7531\u7f13\u5b58   \u6210\u529f\u4e4b\u540e\u4f1a\u5728 runtime \u76ee\u5f55\u4e0b\u751f\u6210\u4e00\u4e2aroute.php<\/li>\n<\/ul>\n<h1>php think optimize:route<\/h1>\n<ul>\n<li>\u751f\u6210\u7c7b\u5e93\u6620\u5c04\u6587\u4ef6  \u6210\u529f\u4e4b\u540e\u4f1a\u5728 runtime \u76ee\u5f55\u4e0b\u751f\u6210\u4e00\u4e2aclassmap.php<\/li>\n<\/ul>\n<h1>php think optimize:autoload<\/h1>\n<ul>\n<li>\u751f\u6210\u914d\u7f6e\u7f13\u5b58\u6587\u4ef6  \u6210\u529f\u4e4b\u540e\u4f1a\u5728 runtime \u76ee\u5f55\u4e0b\u751f\u6210\u4e00\u4e2ainit.php<\/li>\n<\/ul>\n<h1>php think optimize:config<\/h1>\n<h3>fastcgi_finish_request<\/h3>\n<p>\u8f93\u51fa\u5185\u5bb9\u5230\u5ba2\u6237\u7aef\uff0c\u8fdb\u7a0b\u4e0d\u505c\u6b62\u3002\u5904\u7406\u5176\u4ed6\u8017\u65f6\u4efb\u52a1<\/p>\n<h3>register_shutdown_function<\/h3>\n<p>register_shutdown_function\u7a0b\u5e8f\u8fd0\u884c\u7ed3\u675f\u4e4b\u524d\u8c03\u7528\uff0c\u5728fastcgi_finish_request\u4e4b\u540e\u8c03\u7528<\/p>\n","protected":false},"excerpt":{"rendered":"<p>include\u548crequire\u7684\u533a\u522b include\u662f\u6709\u6761\u4ef6\u5305\u542b require\u662f\u65e0\u6761\u4ef6\u5305\u542b if($some [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[15],"tags":[405],"class_list":["post-1116","post","type-post","status-publish","format-standard","hentry","category-15","tag-php"],"_links":{"self":[{"href":"https:\/\/wyxxt.org.cn\/index.php?rest_route=\/wp\/v2\/posts\/1116","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wyxxt.org.cn\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/wyxxt.org.cn\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/wyxxt.org.cn\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/wyxxt.org.cn\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1116"}],"version-history":[{"count":4,"href":"https:\/\/wyxxt.org.cn\/index.php?rest_route=\/wp\/v2\/posts\/1116\/revisions"}],"predecessor-version":[{"id":1121,"href":"https:\/\/wyxxt.org.cn\/index.php?rest_route=\/wp\/v2\/posts\/1116\/revisions\/1121"}],"wp:attachment":[{"href":"https:\/\/wyxxt.org.cn\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1116"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/wyxxt.org.cn\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1116"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/wyxxt.org.cn\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1116"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}