{"id":501,"date":"2025-06-10T23:55:47","date_gmt":"2025-06-10T15:55:47","guid":{"rendered":"https:\/\/www.zhaozhao123.cn\/php\/php-application-manual\/szyzfc\/501.html"},"modified":"2025-06-10T23:55:47","modified_gmt":"2025-06-10T15:55:47","slug":"php%ef%bc%9a%e5%a6%82%e4%bd%95%e5%b0%86%e6%95%b0%e5%ad%97%e8%bd%ac%e6%8d%a2%e4%b8%ba%e5%8d%81%e5%85%ad%e8%bf%9b%e5%88%b6%e4%bb%a5%e5%8f%8a%e5%8f%8d%e4%b9%8b","status":"publish","type":"my1js","link":"https:\/\/www.zhaozhao123.cn\/php\/my1js\/501.html","title":{"rendered":"PHP\uff1a\u5982\u4f55\u5c06\u6570\u5b57\u8f6c\u6362\u4e3a\u5341\u516d\u8fdb\u5236\u4ee5\u53ca\u53cd\u4e4b"},"content":{"rendered":"<div class=\"wp-block-columns p-0 border is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex\">\r\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\r\n<div class=\"wp-block-columns px-4 py-3 border-bottom has-background is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex\" style=\"background:linear-gradient(243deg,rgb(238,238,238) 0%,rgba(58,166,242,0.15) 100%)\">\r\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\r\n<div class=\"wp-block-group is-nowrap is-layout-flex wp-container-core-group-is-layout-6c531013 wp-block-group-is-layout-flex\">\r\n<figure class=\"wp-block-image size-thumbnail is-resized is-style-rounded is-style-rounded--1\"><img decoding=\"async\" src=\"https:\/\/www.zhaozhao123.cn\/myitems\/images\/sites16\/2025\/06\/dyA-1-400x300.jpg\" alt=\"&#23567;&#36213;&#30721;&#29422;\" class=\"wp-image-1842\" style=\"object-fit:cover;width:30px;height:30px\"><\/figure>\r\n\r\n\r\n\r\n<p class=\"my-0\">&#23567;&#36213;&#30721;&#29422;<\/p>\r\n<\/div>\r\n<\/div>\r\n<\/div>\r\n\r\n\r\n\r\n<div class=\"wp-block-columns px-xl-5 px-4 py-xl-4 py-3 is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex\">\r\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\r\n<p>&#22909;&#30340;&#65292;&#19979;&#38754;&#26159;&#22914;&#20309;&#23558;&#25968;&#23383;&#36716;&#25442;&#20026;&#21313;&#20845;&#36827;&#21046;&#21644;&#20174;&#21313;&#20845;&#36827;&#21046;&#36716;&#25442;&#22238;&#25968;&#23383;&#30340;&#35814;&#32454;&#27493;&#39588;&#12290;<\/p>\n<h3>&#23558;&#25968;&#23383;&#36716;&#25442;&#20026;&#21313;&#20845;&#36827;&#21046;<\/h3>\n<ol>\n<li>\n<p><strong>&#20351;&#29992;&#20869;&#32622;&#20989;&#25968; <code>dechex()<\/code><\/strong>&#65306;<\/p>\n<ul>\n<li><code>dechex()<\/code> &#20989;&#25968;&#25509;&#21463;&#19968;&#20010;&#25972;&#25968;&#20316;&#20026;&#21442;&#25968;&#65292;&#24182;&#36820;&#22238;&#35813;&#25972;&#25968;&#30340;&#21313;&#20845;&#36827;&#21046;&#34920;&#31034;&#12290;\n<pre><code class=\"language-php\">$decimalNumber = 255;\n$hexadecimal = dechex($decimalNumber);\necho \"Decimal: {$decimalNumber}, Hexadecimal: {$hexadecimal}\"; \/\/ &#36755;&#20986;: Decimal: 255, Hexadecimal: ff<\/code><\/pre><\/li>\n<\/ul>\n<\/li>\n<li>\n<p><strong>&#25163;&#21160;&#35745;&#31639;<\/strong>&#65288;&#36866;&#29992;&#20110;&#23567;&#33539;&#22260;&#30340;&#25968;&#20540;&#65289;&#65306;<\/p>\n<ul>\n<li>&#22914;&#26524;&#38656;&#35201;&#26356;&#22797;&#26434;&#30340;&#36716;&#25442;&#65292;&#21487;&#20197;&#25163;&#21160;&#35745;&#31639;&#12290;\n<pre><code class=\"language-php\">$decimalNumber = 255;\n$hexadecimal = '';\nfor ($i = 7; $i &gt;= 0; $i--) {\n$remainder = $decimalNumber % 16;\nif ($remainder &lt; 10) {\n   $hexadecimal .= $remainder;\n} else {\n   $hexadecimal .= chr(55 + $remainder); \/\/ 'A' -&gt; 10, 'B' -&gt; 11, ..., 'F' -&gt; 15\n}\n$decimalNumber = intdiv($decimalNumber, 16);\n}\necho \"Hexadecimal: {$hexadecimal}\"; \/\/ &#36755;&#20986;: Hexadecimal: ff<\/code><\/pre><\/li>\n<\/ul>\n<\/li>\n<\/ol>\n<h3>&#23558;&#21313;&#20845;&#36827;&#21046;&#36716;&#25442;&#20026;&#25968;&#23383;<\/h3>\n<ol>\n<li>\n<p><strong>&#20351;&#29992;&#20869;&#32622;&#20989;&#25968; <code>hexdec()<\/code><\/strong>&#65306;<\/p>\n<ul>\n<li><code>hexdec()<\/code> &#20989;&#25968;&#25509;&#21463;&#19968;&#20010;&#21313;&#20845;&#36827;&#21046;&#23383;&#31526;&#20018;&#20316;&#20026;&#21442;&#25968;&#65292;&#24182;&#36820;&#22238;&#35813;&#23383;&#31526;&#20018;&#23545;&#24212;&#30340;&#21313;&#36827;&#21046;&#20540;&#12290;\n<pre><code class=\"language-php\">$hexadecimal = 'ff';\n$decimalNumber = hexdec($hexadecimal);\necho \"Hexadecimal: {$hexadecimal}, Decimal: {$decimalNumber}\"; \/\/ &#36755;&#20986;: Hexadecimal: ff, Decimal: 255<\/code><\/pre><\/li>\n<\/ul>\n<\/li>\n<li>\n<p><strong>&#25163;&#21160;&#35745;&#31639;<\/strong>&#65288;&#36866;&#29992;&#20110;&#23567;&#33539;&#22260;&#30340;&#25968;&#20540;&#65289;&#65306;<\/p>\n<ul>\n<li>&#22914;&#26524;&#38656;&#35201;&#26356;&#22797;&#26434;&#30340;&#36716;&#25442;&#65292;&#21487;&#20197;&#25163;&#21160;&#35745;&#31639;&#12290;\n<pre><code class=\"language-php\">$hexadecimal = 'ff';\n$decimalNumber = 0;\nfor ($i = 0; $i &lt; strlen($hexadecimal); $i++) {\nif ($hexadecimal[$i] &gt;= '0' &amp;&amp; $hexadecimal[$i] &lt;= '9') {\n   $decimalNumber = $decimalNumber * 16 + (int)$hexadecimal[$i];\n} elseif ($hexadecimal[$i] &gt;= 'A' &amp;&amp; $hexadecimal[$i] &lt;= 'F') {\n   $decimalNumber = $decimalNumber * 16 + (int)$hexadecimal[$i] - 55;\n}\n}\necho \"Hexadecimal: {$hexadecimal}, Decimal: {$decimalNumber}\"; \/\/ &#36755;&#20986;: Hexadecimal: ff, Decimal: 255<\/code><\/pre><\/li>\n<\/ul>\n<\/li>\n<\/ol>\n<p>&#36825;&#20123;&#26041;&#27861;&#21487;&#20197;&#24110;&#21161;&#20320;&#22312; PHP &#20013;&#36731;&#26494;&#22320;&#36827;&#34892;&#25968;&#23383;&#21040;&#21313;&#20845;&#36827;&#21046;&#21644;&#21313;&#20845;&#36827;&#21046;&#21040;&#25968;&#23383;&#30340;&#36716;&#25442;&#12290;&#24076;&#26395;&#36825;&#23545;&#20320;&#26377;&#24110;&#21161;&#65281;<\/p>\r\n<\/div>\r\n<\/div>\r\n<\/div>\r\n<\/div><div class=\"wp-block-columns p-0 border is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex\">\r\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\r\n<div class=\"wp-block-columns px-4 py-3 border-bottom has-background is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex\" style=\"background:linear-gradient(243deg,rgb(238,238,238) 0%,rgba(58,166,242,0.15) 100%)\">\r\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\r\n<div class=\"wp-block-group is-nowrap is-layout-flex wp-container-core-group-is-layout-6c531013 wp-block-group-is-layout-flex\">\r\n<figure class=\"wp-block-image size-thumbnail is-resized is-style-rounded is-style-rounded--2\"><img decoding=\"async\" src=\"https:\/\/www.zhaozhao123.cn\/myitems\/images\/sites16\/2025\/06\/zp-400x300.jpg\" alt=\"&#23567;&#39532;&#35762;&#24072;\" class=\"wp-image-1849\" style=\"object-fit:cover;width:30px;height:30px\"><\/figure>\r\n\r\n\r\n\r\n<p class=\"my-0\">&#23567;&#39532;&#35762;&#24072;<\/p>\r\n<\/div>\r\n<\/div>\r\n<\/div>\r\n\r\n\r\n\r\n<div class=\"wp-block-columns px-xl-5 px-4 py-xl-4 py-3 is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex\">\r\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\r\n<body><h2>&#27010;&#36848;<\/h2><p>&#22312;&#26412;&#25945;&#31243;&#20013;&#65292;&#25105;&#20204;&#23558;&#25506;&#35752;&#22914;&#20309;&#20351;&#29992;PHP&#23558;&#25968;&#23383;&#36716;&#25442;&#20026;&#21313;&#20845;&#36827;&#21046;&#34920;&#31034;&#27861;&#20197;&#21450;&#21453;&#36807;&#26469;&#12290;&#36825;&#23558;&#22635;&#34917;&#20154;&#31867;&#21487;&#35835;&#30340;&#25968;&#23383;&#19982;&#26426;&#22120;&#21451;&#22909;&#30340;&#34920;&#31034;&#20043;&#38388;&#30340;&#22522;&#26412;&#40511;&#27807;&#12290;<\/p><p>&#29702;&#35299;&#21313;&#20845;&#36827;&#21046;&#34920;&#31034;&#27861;&#21644;&#36716;&#25442;&#25216;&#24039;&#23545;&#20110;&#21508;&#31181;&#35745;&#31639;&#29615;&#22659;&#65292;&#22914;&#32593;&#39029;&#35774;&#35745;&#12289;&#39068;&#33394;&#21442;&#32771;&#20197;&#21450;&#20302;&#32423;&#25968;&#25454;&#22788;&#29702;&#26469;&#35828;&#38750;&#24120;&#23453;&#36149;&#12290;&#26412;&#25351;&#21335;&#25552;&#20379;&#20102;&#19968;&#31181;&#35814;&#32454;&#30340;PHP&#26041;&#27861;&#26469;&#25191;&#34892;&#20174;&#25968;&#23383;&#21040;&#21313;&#20845;&#36827;&#21046;&#30340;&#36716;&#25442;&#65292;&#21253;&#25324;&#36880;&#27493;&#28145;&#20837;&#30340;&#20363;&#23376;&#12290;<\/p><h2>&#22312;PHP&#20013;&#65292;&#21487;&#20197;&#20351;&#29992;&#20869;&#32622;&#20989;&#25968;bin2hex()&#23558;&#25968;&#23383;&#36716;&#25442;&#20026;&#21313;&#20845;&#36827;&#21046;&#34920;&#31034;&#24418;&#24335;&#12290;&#20363;&#22914;&#65306;\n$number = 16;\necho bin2hex($number); \/\/ &#36755;&#20986;: &#8220;10&#8221;\n&#36825;&#23558;&#20250;&#36755;&#20986;&#19968;&#20010;&#23383;&#31526;&#20018;&#65292;&#20854;&#20013;&#27599;&#20010;&#23383;&#31526;&#20195;&#34920;&#21313;&#36827;&#21046;&#25968;&#30340;&#19968;&#20010;&#20301;&#12290;&#22312;&#36825;&#20010;&#20363;&#23376;&#20013;&#65292;&#21313;&#20845;&#36827;&#21046;&#30340;&#8221;10&#8243;&#23545;&#24212;&#20110;&#21313;&#36827;&#21046;&#30340;16&#12290;\n&#22914;&#26524;&#20320;&#24819;&#33719;&#21462;&#25968;&#23383;&#30340;&#21313;&#20845;&#36827;&#21046;&#20540;&#65292;&#20320;&#21487;&#20197;&#20808;&#23558;&#20854;&#36716;&#25442;&#20026;&#20108;&#36827;&#21046;&#23383;&#31526;&#20018;&#65292;&#28982;&#21518;&#29992;substr()&#20989;&#25968;&#25552;&#21462;&#20986;&#23545;&#24212;&#30340;&#21313;&#20845;&#36827;&#21046;&#37096;&#20998;&#12290;&#20363;&#22914;&#65306;\n$number = 16;\n$binary = decbin($number);\necho substr($binary, -4); \/\/ &#36755;&#20986;: &#8220;10&#8221;\n&#36825;&#27573;&#20195;&#30721;&#39318;&#20808;&#23558;&#21313;&#36827;&#21046;&#25968;16&#36716;&#25442;&#20026;&#20108;&#36827;&#21046;&#23383;&#31526;&#20018;&#65292;&#28982;&#21518;&#36890;&#36807;&#21462;&#21453;&#21521;&#32034;&#24341;&#30340;&#26041;&#24335;&#65288;-4&#65289;&#26469;&#25552;&#21462;&#20986;&#21313;&#20845;&#36827;&#21046;&#30340;&#21069;&#22235;&#20301;&#65292;&#21363;&#8221;10&#8243;&#12290;<\/h2><p>PHP &#25552;&#20379;&#20102;&#21407;&#29983;&#20989;&#25968;&#29992;&#20110;&#23558;&#25968;&#20540;&#36716;&#25442;&#20026;&#21313;&#20845;&#36827;&#21046;&#26684;&#24335;&#12290;&#20351;&#29992;<code>dechex()<\/code>&#35813;&#20989;&#25968;&#25509;&#25910;&#19968;&#20010;&#25972;&#25968;&#20316;&#20026;&#36755;&#20837;&#65292;&#24182;&#36820;&#22238;&#34920;&#31034;&#35813;&#25972;&#25968;&#20540;&#30340;&#21313;&#20845;&#36827;&#21046;&#23383;&#31526;&#20018;&#65306;<\/p><pre><code>$number = 255;\n$hex = dechex($number);\necho $hex; \/\/ Outputs: 'ff'<\/code><\/pre><p>&#23545;&#20110;&#36716;&#25442;&#27491;&#25972;&#25968;&#26469;&#35828;&#65292;&#36825;&#38750;&#24120;&#26377;&#25928;&#65292;&#20294;&#22914;&#26524;&#38656;&#35201;&#22788;&#29702;&#36127;&#25968;&#25110;&#26356;&#22823;&#30340;&#25972;&#25968;&#24590;&#20040;&#21150;&#65311;<\/p><h3>&#22788;&#29702;&#26356;&#22823;&#30340;&#21644;&#36127;&#25968;&#30340;&#25968;&#23383;<\/h3><p>&#23545;&#20110;&#36229;&#36807;32&#20301;&#25972;&#25968;&#26368;&#22823;&#20540;&#30340;&#22823;&#25972;&#25968;&#65292;PHP&#30340;<code>dechex()<\/code>&#21487;&#33021;&#19981;&#20250;&#36798;&#21040;&#39044;&#26399;&#30340;&#32467;&#26524;&#65306;<\/p><pre><code>$largeNumber = 4294967295;\n$hexLarge = dechex($largeNumber);\necho $hexLarge; \/\/ Outputs: 'ffffffff'<\/code><\/pre><p>&#36127;&#25972;&#25968;&#38656;&#35201;&#19968;&#20123;&#39069;&#22806;&#30340;&#36923;&#36753;&#65292;&#22240;&#20026;&#23427;&#20204;&#22312;&#22823;&#22810;&#25968;&#31995;&#32479;&#19978;&#26159;&#20004;&#34917;&#30721;&#65306;<\/p><pre><code>$negative = -255;\n$hexNegative = dechex($negative);\necho $hexNegative; \/\/ PHP Warning:  dechex() expects parameter 1 to be positive<\/code><\/pre><p>&#25105;&#20204;&#23558;&#31245;&#21518;&#22312;&ldquo;&#39640;&#32423;&#25216;&#26415;&rdquo;&#37096;&#20998;&#22788;&#29702;&#36825;&#31181;&#24773;&#20917;&#12290;<\/p><h2>&#23558;&#21313;&#20845;&#36827;&#21046;&#36716;&#25442;&#20026;&#25968;&#23383;&#12290;<\/h2><p>&#21453;&#21521;&#36807;&#31243;&#65292;&#21363;&#20174;&#21313;&#20845;&#36827;&#21046;&#23383;&#31526;&#20018;&#36716;&#25442;&#22238;&#21313;&#36827;&#21046;&#25972;&#25968;&#65292;&#20351;&#29992;&#20197;&#19979;&#20844;&#24335;&#65306;int(decimal) = int(hexadecimal, 16)<code>hexdec()<\/code>PHP &#20989;&#25968;&#65306;<\/p><pre><code>$hex = 'ff';\n$number = hexdec($hex);\necho $number; \/\/ Outputs: 255<\/code><\/pre><p>&#22788;&#29702;&#36739;&#22823;&#38271;&#24230;&#30340;&#21313;&#20845;&#36827;&#21046;&#23383;&#31526;&#20018;&#65292;&#22914;&#26524;&#36716;&#25442;&#21518;&#30340;&#25968;&#20540;&#36229;&#20986;&#20102;PHP&#30340;&#25972;&#25968;&#33539;&#22260;&#65292;&#21017;&#20250;&#36820;&#22238;&#19968;&#20010;&#28014;&#28857;&#20540;&#65306;<\/p><pre><code>$hexLarge = '1ffffffff';\n$numberLarge = hexdec($hexLarge);\necho $numberLarge; \/\/ Outputs a float since it exceeds PHP's integer range<\/code><\/pre><h2>&#20013;&#32423;&#25216;&#26415;<\/h2><p>&#22914;&#26524;&#20320;&#38656;&#35201;&#30830;&#20445;&#20320;&#30340;&#21313;&#20845;&#36827;&#21046;&#23383;&#31526;&#20018;&#22987;&#32456;&#26377;&#29305;&#23450;&#25968;&#37327;&#30340;&#23383;&#31526;&#65292;&#20363;&#22914;&#20026;RGB&#39068;&#33394;&#28155;&#21152;&#21069;&#23548;&#38646;&#65292;&#37027;&#20040;sprintf()&#20989;&#25968;&#38750;&#24120;&#26377;&#29992;&#65306;<\/p><pre><code>$number = 255;\n$hex = sprintf(\"%02x\", $number);\necho $hex; \/\/ Outputs: 'ff'<\/code><\/pre><p>&#22312;&#24773;&#22659;&#19979;&#65292;&#25105;&#20204;&#21487;&#33021;&#36824;&#38656;&#35201;&#23558;&#21313;&#20845;&#36827;&#21046;&#23383;&#31526;&#20018;&#34920;&#31034;&#20026;&#22823;&#20889;&#24418;&#24335;&#12290;&#36825;&#38656;&#35201;&#20570;&#19968;&#28857;&#35843;&#25972;&#65306;<\/p><pre><code>echo strtoupper($hex); \/\/ Outputs: 'FF'<\/code><\/pre><h2>&#39640;&#32423;&#25216;&#26415;<\/h2><p>&#22312;&#22788;&#29702;&#36127;&#25968;&#25110;&#36229;&#36807;32&#20301;&#30340;&#25968;&#23383;&#26102;&#65292;&#20320;&#38656;&#35201;&#35268;&#36991;PHP&#20869;&#32622;&#20989;&#25968;&#30340;&#38480;&#21046;&#65306;<\/p><pre><code>$number = -255;\n$result = unpack(\"H*\", pack(\"l\", $number));\n$hexNegative = $result[1];\necho $hexNegative; \/\/ Outputs a valid hex string\n<\/code><\/pre><p>&#23545;&#20110;&#26080;&#31526;&#21495;&#38271;&#25972;&#22411;&#34920;&#31034;&#65306;<\/p><pre><code>$number = 4294967295;\n$hex = sprintf('%08x', $number);\necho $hex; \/\/ Outputs: 'ffffffff'<\/code><\/pre><p>&#38656;&#35201;&#27880;&#24847;&#30340;&#26159;&#65292;&#36825;&#20123;&#25216;&#26415;&#21487;&#33021;&#38656;&#35201;&#26681;&#25454;&#31995;&#32479;&#26550;&#26500;&#36827;&#34892;&#39069;&#22806;&#30340;&#36716;&#25442;&#12290;<\/p><h2>&#21313;&#20845;&#36827;&#21046;&#31639;&#26415;&#21644;&#20301;&#25805;&#20316;<\/h2><p>&#22312;&#36827;&#34892;&#25968;&#23398;&#36816;&#31639;&#21644;&#31639;&#27861;&#26102;&#65292;&#23558;&#21313;&#20845;&#36827;&#21046;&#20540;&#25972;&#21512;&#21040;&#20854;&#20013;&#38656;&#35201;&#23545;&#20301;&#25805;&#20316;&#26377;&#26356;&#28145;&#20837;&#30340;&#29702;&#35299;&#12290;PHP &#25552;&#20379;&#20102;&#22810;&#20010;&#29992;&#20110;&#27492;&#30446;&#30340;&#30340;&#25805;&#20316;&#31526;&#65306;<code>&amp;<\/code>&#25353;&#20301;&#19982;&#25805;&#20316;&#65288;Bitwise AND&#65289;<code>|<\/code>&#25353;&#20301;&#25110;&#65288;Bitwise OR&#65289;<code>^<\/code>(&#25353;&#20301;&#24322;&#25110;)&#65292;&#21644;<code>~<\/code>&#25353;&#20301;&#38750;&#12290;<\/p><pre><code>$firstHex = 0x1A;\n$secondHex = 0x0F;\n$result = $firstHex &amp; $secondHex;\necho dechex($result);  \/\/ Outputs: 'a'<\/code><\/pre><h2>&#32467;&#35770;&#12290;<\/h2><p>&#36890;&#36807;&#25105;&#20204;&#24050;&#32463;&#25506;&#35752;&#30340;&#27010;&#24565;&#21644;&#31034;&#20363;&#65292;&#20320;&#24212;&#35813;&#33021;&#22815;&#22788;&#29702;&#21508;&#31181;PHP&#20013;&#30340;&#21313;&#20845;&#36827;&#21046;&#36716;&#25442;&#20219;&#21153;&#12290;&#22823;&#22810;&#25968;&#24773;&#20917;&#19979;&#65292;&#21487;&#20197;&#36890;&#36807;&#20869;&#32622;&#20989;&#25968;&#35299;&#20915;&#65292;&#20294;&#29702;&#35299;&#21313;&#20845;&#36827;&#21046;&#34920;&#31034;&#30340;&#24213;&#23618;&#21407;&#29702;&#23558;&#20351;&#20320;&#22312;&#36935;&#21040;&#22797;&#26434;&#38382;&#39064;&#26102;&#26356;&#26377;&#33021;&#21147;&#21435;&#35299;&#20915;&#23427;&#20204;&#12290;<\/p><\/body>\r\n<\/div>\r\n<\/div>\r\n<\/div>\r\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>&#23567;&#36213;&#30721;&#29422; &#22909;&#30340;&#65292;&#19979;&#38754;&#26159;&#22914;&#20309;&#23558;&#25968;&#23383;&#36716;&#25442;&#20026;&#21313;&#038;#20845..<\/p>\n","protected":false},"author":1,"featured_media":0,"menu_order":0,"template":"","meta":{"_acf_changed":false},"tags":[],"my1js2nav":[40],"tuisongtax":[],"class_list":["post-501","my1js","type-my1js","status-publish","hentry","my1js2nav-szyzfc"],"acf":{"qian_art_seotitle":"","qian_art_seotitle_source":{"label":"SEO\u6807\u9898","type":"text","formatted_value":""},"qian_art_seokws":"","qian_art_seokws_source":{"label":"SEO\u5173\u952e\u8bcd","type":"text","formatted_value":""},"qian_art_stzhong":"","qian_art_stzhong_source":{"label":"\u4e2d | \u77ed\u6807\u9898","type":"text","formatted_value":""}},"_links":{"self":[{"href":"https:\/\/www.zhaozhao123.cn\/php\/wp-json\/wp\/v2\/my1js\/501","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.zhaozhao123.cn\/php\/wp-json\/wp\/v2\/my1js"}],"about":[{"href":"https:\/\/www.zhaozhao123.cn\/php\/wp-json\/wp\/v2\/types\/my1js"}],"author":[{"embeddable":true,"href":"https:\/\/www.zhaozhao123.cn\/php\/wp-json\/wp\/v2\/users\/1"}],"wp:attachment":[{"href":"https:\/\/www.zhaozhao123.cn\/php\/wp-json\/wp\/v2\/media?parent=501"}],"wp:term":[{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.zhaozhao123.cn\/php\/wp-json\/wp\/v2\/tags?post=501"},{"taxonomy":"my1js2nav","embeddable":true,"href":"https:\/\/www.zhaozhao123.cn\/php\/wp-json\/wp\/v2\/my1js2nav?post=501"},{"taxonomy":"tuisongtax","embeddable":true,"href":"https:\/\/www.zhaozhao123.cn\/php\/wp-json\/wp\/v2\/tuisongtax?post=501"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}