{"id":3146,"date":"2025-06-02T13:31:44","date_gmt":"2025-06-02T05:31:44","guid":{"rendered":"https:\/\/www.deekpay.com\/?p=3146"},"modified":"2025-06-02T13:31:44","modified_gmt":"2025-06-02T05:31:44","slug":"%e7%94%a8php%e6%8e%a5%e5%85%a5%e6%b3%b0%e5%9b%bd%e6%94%af%e4%bb%98%e7%bd%91%e5%85%b3%e7%9a%84%e5%ae%9e%e4%be%8b%e6%95%99%e7%a8%8b","status":"publish","type":"post","link":"https:\/\/www.deekpay.com\/ko\/2025\/06\/02\/%e7%94%a8php%e6%8e%a5%e5%85%a5%e6%b3%b0%e5%9b%bd%e6%94%af%e4%bb%98%e7%bd%91%e5%85%b3%e7%9a%84%e5%ae%9e%e4%be%8b%e6%95%99%e7%a8%8b\/","title":{"rendered":"\ud0dc\uad6d \uacb0\uc81c \uac8c\uc774\ud2b8\uc6e8\uc774 \uc608\uc81c \ud29c\ud1a0\ub9ac\uc5bc\uc5d0 \ub300\ud55c PHP \uc561\uc138\uc2a4"},"content":{"rendered":"<p>\ud0dc\uad6d \uacb0\uc81c \uac8c\uc774\ud2b8\uc6e8\uc774\uc5d0 \ub300\ud55c # PHP \uc561\uc138\uc2a4 \ud29c\ud1a0\ub9ac\uc5bc \uc608\uc81c<\/p>\n<p> 1. \uc900\ube44 \uc791\uc5c5<\/p>\n<p>\uc2dc\uc791\ud558\uae30 \uc804\uc5d0 \uba3c\uc800 \ud574\uc57c \ud560 \uc77c\uc774 \uc788\uc2b5\ub2c8\ub2e4:<br \/>\n- \ud0dc\uad6d \uacb0\uc81c \uac8c\uc774\ud2b8\uc6e8\uc774\uac00 \uc788\ub294 \ud310\ub9e4\uc790 \uacc4\uc815(\uc608: 2C2P, Omise, TrueMoney \ub4f1)<br \/>\n- PHP \uac1c\ubc1c \ud658\uacbd(PHP 7.0 \uc774\uc0c1 \uad8c\uc7a5)<br \/>\n- \ucef4\ud3ec\uc800 \uc885\uc18d\uc131 \uad00\ub9ac \ub3c4\uad6c<br \/>\n- \uc6f9 \uc11c\ubc84(Apache\/Nginx)<\/p>\n<p> 2. \ud544\uc694\ud55c \ub77c\uc774\ube0c\ub7ec\ub9ac \uc124\uce58<\/p>\n<p>\"`bash<br \/>\n\uc791\uace1\uac00 \ud544\uc694 GUZZLEHTTP\/GUZZLE<br \/>\n&#8220;`<\/p>\n<p> Omise \uacb0\uc81c \uac8c\uc774\ud2b8\uc6e8\uc774 \ud1b5\ud569 \uc608\uc2dc 3.<\/p>\n<p> a) Omise \ucd08\uae30\ud654 \uad6c\uc131<\/p>\n<p>\"`php<br \/>\n<?php\nrequire 'vendor\/autoload.php';\n\nuse GuzzleHttp\\Client;\n\nclass OmisePayment {\n    private $publicKey = 'your_omise_public_key';\n    private $secretKey = 'your_omise_secret_key';\n    private $apiUrl = 'https:\/\/api.omise.co';\n    \n    public function __construct() {\n        $this->client = \uc0c8 \ud074\ub77c\uc774\uc5b8\ud2b8([<br \/>\n            'base_uri' =&gt; $this-&gt;apiUrl,<br \/>\n            'auth' =&gt; [$this-&gt;secretKey, \"]<br \/>\n        ]);<br \/>\n    }<br \/>\n}<br \/>\n&#8220;`<\/p>\n<p> b) \uacb0\uc81c \uc694\uccad \uc0dd\uc131<\/p>\n<p>\"`php<br \/>\npublic function createCharge($amount, $currency, $token) {<br \/>\n    \uc2dc\ub3c4 {<br \/>\n        $response = $this-&gt;client-&gt;post('\/charges', [ [<br \/>\n            'form_params' =&gt; [<br \/>\n                'amount' =&gt; intval($amount * 100), \/\/ Omise\ub294 \uac00\uc7a5 \uc791\uc740 \ud1b5\ud654 \ub2e8\uc704(\uc13c\ud2b8)\ub97c \uc0ac\uc6a9\ud569\ub2c8\ub2e4.<br \/>\n                'currency' =&gt; strtolower($currency),<br \/>\n                '\uce74\ub4dc' =&gt; 1TP4\ud1a0\ud070.<br \/>\n                \/\/ \ud544\uc694\ud55c \uacbd\uc6b0 \ud0dc\uad6d \ud2b9\uc815 \ub9e4\uac1c \ubcc0\uc218<br \/>\n                \/\/ &#8230;<br \/>\n            ]<br \/>\n        ]);<\/p>\n<p>        \ubc18\ud658 json_decode($response-&gt;getBody(), true);<\/p>\n<p>    } catch (\uc608\uc678 $e) {<br \/>\n        error_log('Omise \ucda9\uc804 \uc624\ub958: '.$e-&gt;getMessage()');<br \/>\n        \ubc18\ud658 ['error' =&gt; true];<br \/>\n    }<br \/>\n}<br \/>\n&#8220;`<\/p>\n<p> c) \ud1a0\ud070 \uc0dd\uc131 \ud504\ub7f0\ud2b8\uc5d4\ub4dc \ucf54\ub4dc \uc608\uc2dc(\uc790\ubc14\uc2a4\ud06c\ub9bd\ud2b8)<\/p>\n<p>\"`javascript<br \/>\n\/\/ HTML\uc5d0 Omise.js \ub77c\uc774\ube0c\ub7ec\ub9ac\ub97c \ub3c4\uc785\ud55c \ud6c4.<\/p>\n<p>&#8220;`<\/p>\n<p> \ud2b8\ub8e8\uba38\ub2c8 \uc6d4\ub81b \ud1b5\ud569 \uc608\uc2dc 4.<\/p>\n<p> a) API \uad6c\uc131 \ud074\ub798\uc2a4<\/p>\n<p>\"`php<br \/>\n\ud2b8\ub8e8\uba38\ub2c8\uc6d4\ub81b\uacb0\uc81c \ud074\ub798\uc2a4 {<br \/>\n   private const BASE_URL_SANDBOX = \"https:\/\/sandbox.truemoney.com\/api\/v1\u2033;<br \/>\n   private const BASE_URL_PRODUCTION = \"https:\/\/tmn-prod.apigee.net\/api\/v1\";<\/p>\n<p>   public \ud568\uc218 __construct(private string|bool|null $_isSandbox=true){}<\/p>\n<p>   protected function getBaseURL():string{<br \/>\n       \ubc18\ud658 ($this-&gt;_isSandbox)?self::BASE_URL_SANDBOX:self::BASE_URL_PRODUCTION;<br \/>\n   }<\/p>\n<p>   \ubcf4\ud638\ub41c \uc815\uc801 \ubc30\uc5f4 $_headers=[<br \/>\n       \"\ucf58\ud150\uce20 \uc720\ud615\"=&gt;\"application\/json\".<br \/>\n       \"\uc218\ub77d\"=&gt;\"application\/json\"<br \/>\n   ];<\/p>\n<p>   \uacf5\uc6a9 \uc815\uc801 \ubc30\uc5f4 $_requiredFields=[\"\uc0ac\uc6a9\uc790 \uc774\ub984\", \"\ube44\ubc00\ubc88\ud638\"];<\/p>\n<p>}<br \/>\n&#8220;`<\/p>\n<p> b) QR\ucf54\ub4dc \uacb0\uc81c \ucc98\ub9ac \ud750\ub984 <\/p>\n<p>\"`php<br \/>\n\/<br \/>\n* @param float|int|string \uae08\uc561 - \uacb0\uc81c \uae08\uc561(THB(\u0e3f))<br \/>\n* @param \ubb38\uc790\uc5f4 merchantRef - \uac70\ub798 \ucd94\uc801\uc744 \uc704\ud55c \uace0\uc720 \ucc38\uc870 ID<br \/>\n*\/<br \/>\n\uacf5\uc6a9 \uc815\uc801 \ube44\ub3d9\uae30 \uc0dd\uc131QRCode(<br \/>\n float|int|string amount=null ,<br \/>\n \ubb38\uc790\uc5f4 merchantRef=\"\" ,<br \/>\n bool isSandBox=false):array{<\/p>\n<p> try{<\/p>\n<p>     # \ud544\uc218 \ud544\ub4dc \ubc0f \uae08\uc561 \uc720\ud6a8\uc131 \uac80\uc0ac...<\/p>\n<p>     # \ud2b8\ub8e8\uba38\ub2c8 API \uc694\uccad \ub370\uc774\ud130 \uc900\ube44\ud558\uae30<br \/>\n     $_requestData=[<br \/>\n          \"paymentAmount\"=&gt;floatval(number_format(floatval(str_replace(\",\",\" \",$amount)),2,\".\" , \"\")),<br \/>\n          \"merchantReferenceId\"=&gt;strtoupper(substr(preg_replace(\"\/[^A-Za-z0-9]+\/i \",\"\",trim((empty($_merchantReference))?uniqid():$_merchantReference)),0 ,20)),<br \/>\n          ... # TMN \ubb38\uc11c\ubcc4 \uae30\ud0c0 \ud544\uc218 \ub9e4\uac1c\ubcc0\uc218<br \/>\n     ];<\/p>\n<p>}catch(\\Throwable|\\Exception|\\ErrorException$exception){<br \/>\n throw new \\RuntimeException(sprintf(\"%s:%s \",__METHOD__,$exception));;<br \/>\n}<\/p>\n<p>\ubc18\ud658 [];<br \/>\n}<br \/>\n&#8220;`<br \/>\n\ucc38\uace0: \uc2e4\uc81c \uad6c\ud604\uc5d0 \ub300\ud574\uc11c\ub294 \ucd5c\uc2e0 TrueMoney API \uc124\uba85\uc11c\ub97c \ucc38\uc870\ud558\uc138\uc694.<\/p>\n<p>5 . \uc77c\ubc18\uc801\uc778 \ubb38\uc81c \ud574\uacb0  <\/p>\n<p>Q: SSL \uc778\uc99d\uc11c \uc720\ud6a8\uc131 \uac80\uc0ac\uc5d0 \uc2e4\ud328\ud588\ub098\uc694?<br \/>\nA: `curl_setopt($ch,CURLOPT_SSL_VERIFYPEER,FALSE);` (\ud14c\uc2a4\ud2b8 \ud658\uacbd \uc804\uc6a9)<\/p>\n<p>\uc9c8\ubb38: HTTP \uc751\ub2f5 \uc0c1\ud0dc \ucf54\ub4dc 403\uc740 \ubb34\uc5c7\uc778\uac00\uc694?<br \/>\nA: IP \ud654\uc774\ud2b8\ub9ac\uc2a4\ud2b8\uac00 \uc124\uc815\ub418\uc9c0 \uc54a\uc558\uac70\ub098 API \ud0a4\uac00 \uc720\ud6a8\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. \ud310\ub9e4\uc790 \ubc31\uc5d4\ub4dc IP \uc81c\ud55c \uc124\uc815\uc744 \ud655\uc778\ud558\uc138\uc694.<\/p>\n<p>&#8212;<\/p>\n<p>\uc704\ub294 \ud0dc\uad6d\uc758 \uc8fc\uc694 \uacb0\uc81c \uac8c\uc774\ud2b8\uc6e8\uc774\uc5d0 \ub300\ud55c PHP \uc561\uc138\uc2a4\uc758 \uae30\ubcf8 \ud504\ub808\uc784\uc6cc\ud06c\uc785\ub2c8\ub2e4. \uc815\ud655\ud558\uac8c \uad6c\ud604\ud558\uc2dc\uae30 \ubc14\ub78d\ub2c8\ub2e4:<\/p>\n<p>1. \uc120\ud0dd\ud55c \uac8c\uc774\ud2b8\uc6e8\uc774\uc758 \ucd5c\uc2e0 \uacf5\uc2dd \ubb38\uc11c\ub97c \uc8fc\uc758 \uae4a\uac8c \uc77d\uc2b5\ub2c8\ub2e4.<br \/>\n2. \ud504\ub85c\ub355\uc158 \ud658\uacbd\uc5d0\uc11c HTTPS \ubc0f \uc5c4\uaca9\ud55c \ub370\uc774\ud130 \uc720\ud6a8\uc131 \uac80\uc0ac \ud65c\uc131\ud654<br \/>\n3. \ubaa8\ub4e0 \ud2b8\ub79c\uc7ad\uc158 \uc694\uccad\uacfc \uc751\ub2f5\uc744 \uae30\ub85d\ud558\uae30 \uc704\ud574 \ub85c\uadf8\ub97c \ucd94\uac00\ud558\ub294 \uac83\uc744 \uace0\ub824\ud569\ub2c8\ub2e4.<\/p>\n<p>\ube44\uc988\ub2c8\uc2a4 \uc694\uad6c \uc0ac\ud56d\uc5d0 \ub530\ub77c \ud658\ubd88 \ucc98\ub9ac, \uac70\ub798 \uc0c1\ud0dc \ud655\uc778 \ubc0f \uae30\ud0c0 \uae30\ub2a5\ub3c4 \ud544\uc694\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<h1>\ud0dc\uad6d \uacb0\uc81c \uac8c\uc774\ud2b8\uc6e8\uc774\uc5d0 \ub300\ud55c PHP \uc561\uc138\uc2a4 \uc608\uc81c \ud29c\ud1a0\ub9ac\uc5bc(\uacc4\uc18d)<\/h1>\n<h2>6. 2C2P \uacb0\uc81c \uac8c\uc774\ud2b8\uc6e8\uc774 \ud1b5\ud569 \uc608\uc2dc<\/h2>\n<h3>a) \uad6c\uc131 \ucd08\uae30\ud654\ud558\uae30<\/h3>\n<pre><code class=\"language-php\">\ud074\ub798\uc2a4 Payment2C2P {<br>\r\n    private $merchantID = 'your_merchant_id';<br>\r\n    \ube44\uacf5\uac1c $secretKey = 'your_secret_key';<br>\r\n    private $apiUrl = 'https:\/\/demo2.2c2p.com\/'; \/\/ \uc0cc\ub4dc\ubc15\uc2a4 URL<br>\r\n    <br>\r\n    \uacf5\uc6a9 \ud568\uc218 __construct() {<br>\r\n        $this-&gt;client = \uc0c8 \ud074\ub77c\uc774\uc5b8\ud2b8([)<br>\r\n            'base_uri' =&gt; $this-&gt;apiUrl,<br>\r\n            'headers' =&gt; [<br>\r\n                '\ucf58\ud150\uce20 \uc720\ud615' =&gt; 'application\/json',<br>\r\n                'Accept' =&gt; 'application\/json'<br>\r\n            ]<br>\r\n        ]);<br>\r\n    }<br>\r\n}<br>\r\n<\/code><\/pre>\n<h3>b) \uacb0\uc81c \uc694\uccad \uc0dd\uc131<\/h3>\n<pre><code class=\"language-php\">public function createPayment($orderId, $amount, $currency, array $customerInfo) {<br>\r\n    try {<br>\r\n        \/\/ Prepare payload according to 2C2P API specs<br>\r\n        $payload = [<br>\r\n            &quot;merchantID&quot; =&gt; $this-&gt;merchantID,<br>\r\n            &quot;invoiceNo&quot; =&gt; str_pad($orderId, 12, &quot;0&quot;, STR_PAD_LEFT),<br>\r\n            &quot;description&quot; =&gt; &quot;Order Payment&quot;,<br>\r\n            &quot;amount&quot; =&gt; number_format($amount, 2),<br>\r\n            &quot;currencyCode&quot; =&gt; ($currency === &quot;THB&quot;) ? &quot;764&quot; : &quot;&quot;, \/\/ ISO numeric code for THB is 764<br>\r\n            \/\/ Thailand specific parameters:<br>\r\n            &quot;paymentChannel&quot; =&gt; [&quot;CC&quot;, &quot;&quot;], \/\/ Credit Card and other available channels in Thailand<br>\r\n            ...$customerInfo,<br>\r\n        ];<br>\r\n        <br>\r\n        \/\/ Generate HMAC signature as required by 2C2P<br>\r\n        ksort($payload);<br>\r\n        foreach ($payload as &amp;$value) {<br>\r\n           if (is_array($value)) continue;<br>\r\n           if (is_bool($value)) { <br>\r\n               continue; <br>\r\n           } else { <br>\r\n               trim((string)$value); <br>\r\n           }<br>\r\n         }<br>\r\n<br>\r\n         $_signatureData=implode(&quot;&quot;,array_values(array_filter($_requestPayload)));<br>\r\n         <br>\r\n         $_hashSignature=hash_hmac('sha256',$_signatureData,$this-&gt;_secretKey);<br>\r\n<br>\r\n          $_requestPayload['signature']=$_hashSignature;<br>\r\n<br>\r\n          return json_encode($_requestPayload);<br>\r\n<br>\r\n      } catch (\\Exception|\\Throwable$exception){<br>\r\n          throw new \\RuntimeException(sprintf(&quot;%s:%s &quot;,__METHOD__,$exception));<br>\r\n      }<br>\r\n   }<br>\r\n<br>\r\n   \/<br>\r\n   * @param string|int orderId - unique identifier for transaction  <br>\r\n   *\/<br>\r\n   public static async verifyTransaction(string|int$_orderReference=&quot;&quot;):bool{<br>\r\n       # Implementation per API docs...<br>\r\n       return false;<br>\r\n   }<br>\r\n<\/code><\/pre>\n<p>7 . \ucf5c\ubc31 \uc54c\ub9bc \ucc98\ub9ac\ud558\uae30<\/p>\n<p>\ub300\ubd80\ubd84\uc758 \ud0dc\uad6d \uacb0\uc81c \uac8c\uc774\ud2b8\uc6e8\uc774\ub294 \uc11c\ubc84 \ub300 \uc11c\ubc84(\uc11c\ubc84 \uac04\/S-TO-S) \uc54c\ub9bc\uc744 \uc804\uc1a1\ud569\ub2c8\ub2e4:<\/p>\n<pre><code class=\"language-php\"><br>\r\n\/<br>\r\n* :: Omise \uc6f9\ud6c5 \uc54c\ub9bc\uc744 \uc704\ud55c \ucf5c\ubc31 \ud578\ub4e4\ub7ec \uc608\uc2dc  <br>\r\n*\/<br>\r\n\ud568\uc218 handleOmiseWebhook(){<br>\r\n    <br>\r\n     file_put_contents(__DIR__.\" \/... \/\ub85c\uadf8\/\uc6f9\ud6c5\uc2a4.\ub85c\uadf8\",<br>\r\n                      sprintf(\"[%s] %s\\n\",<br>\r\n                              date(\"Y-m-d H:i:s\"),<br>\r\n                              print_r($_POST?????????????????????????????? [],true)),<br>\r\n                      FILE_APPEND).<br>\r\n     <br>\r\n     try{   <br>\r\n          <br>\r\n          if(!isset($_SERVER[\"HTTP_X_SIGNATURE\"])){<br>\r\n              throw new \\InvalidArgumentException(\"\ub204\ub77d\ub41c X-\uc11c\uba85 \ud5e4\ub354\");;<br>\r\n          }<br>\r\n<br>\r\n          list(\/*algo*\/,\/*timestamp*\/,$expectedSig)=explode(\",\",trim(str_replace([\"v1=\", \"t=\"],\"\",$_SERVER[\"HTTP_X_SIGNATURE\"])));<br>\r\n<br>\r\n          <br>\r\n         \/* \uc5d4\ub4dc\ud3ec\uc778\ud2b8 \ube44\ubc00\uc744 \uc0ac\uc6a9\ud558\uc5ec \uc11c\uba85 \ud655\uc778 *\/       <br>\r\n         \/* \ucc38\uc870: https:\/\/www.omise.co\/webhook-signatures *\/<br>\r\n<br>\r\n         <br>\r\n     }catch(\\Throwable|\\Exception$e){<br>\r\n         <br>\r\n         http_response_code(400).<br>\r\n         <br>\r\n     } \ub9c8\uc9c0\ub9c9\uc73c\ub85c{<br>\r\n        <br>\r\n       exit();\/\/ \uc6f9\ud6c5 \ucc98\ub9ac \ud6c4 \ud56d\uc0c1 \uc2a4\ud06c\ub9bd\ud2b8\ub97c \uc885\ub8cc\ud558\uc138\uc694!<br>\r\n       <br>\r\n     }<br>\r\n}<br>\r\n<br>\r\n<\/code><\/pre>\n<p>8 . \ubcf4\uc548 \ubaa8\ubc94 \uc0ac\ub840<\/p>\n<p>1.<strong>\ub370\uc774\ud130 \uc720\ud6a8\uc131 \uac80\uc0ac<\/strong>:<\/p>\n<pre><code class=\"language-php\"><br>\r\nfunction sanitizeThaiInput(string|null$_input=\"\"):?string{<br>\r\n<br>\r\n      if(is_null($_input))\uc740 null\uc744 \ubc18\ud658\ud569\ub2c8\ub2e4;<br>\r\n<br>\r\n      $_cleaned=preg_replace(\"\/[^\u0e01-\u0e59\\w\\-\\. @ ]+\/u\",\"\".<br>\r\n<br>\r\n                  strip_tags(<br>\r\n<br>\r\n                     htmlspecialchars_decode(<br>\r\n<br>\r\n                        filter_var(trim((\ubb38\uc790\uc5f4)$input),<br>\r\n<br>\r\n                                   FILTER_UNSAFE_Raw.<br>\r\n<br>\r\n                                   [\"flags\"=&gt;FILTER_FLAG_NO_ENCODE_QUTES])<br>\r\n<br>\r\n                     )<br>\r\n<br>\r\n                   ));<br>\r\n<br>\r\n       \ubc18\ud658 (!empty(_cleaned)?mb_substr(_cleaned,,255):null;<br>\r\n<br>\r\n}<br>\r\n<\/code><\/pre>\n<hr>\n<p>9 . \ud14c\uc2a4\ud2b8 \ubc0f \ub514\ubc84\uae45 \uae30\uc220<\/p>\n<p><strong>\uc544\ub0a0\ub85c\uadf8 \uc751\ub2f5 \ub3c4\uad6c<\/strong>:<br \/>\n\ub85c\uceec \uac1c\ubc1c \ud658\uacbd\uc744 \uc778\ud130\ub137\uc5d0 \ub178\ucd9c\ud558\uc5ec Ngrok\uacfc \uac19\uc740 \ub3c4\uad6c\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc6f9\ud6c5\uc744 \uc218\uc2e0\ud558\uc138\uc694.<\/p>\n<p><strong>\ub85c\uae45 \uad8c\uc7a5 \uc0ac\ud56d<\/strong>:<\/p>\n<pre><code class=\"language-ini\">\uacb0\uc81c \ub85c\uae45\uc744 \uc704\ud55c php.ini \uc124\uc815.<br>\r\n\ub85c\uadf8 \uc624\ub958 = \ucf1c\uc9d0  <br>\r\nerror_log=\"\/var\/log\/php\/payment_error.log\"<br>\r\n<\/code><\/pre>\n<hr>\n<p>10 . \ud655\uc7a5 \uae30\ub2a5 \uad6c\ud604<\/p>\n<p>a) \ud560\ubd80(\ud0dc\uad6d \uc2e0\uc6a9 \uce74\ub4dc\uc758 \uacbd\uc6b0).<\/p>\n<p>Omise \ub610\ub294 \uc2a4\ud14c\uc774\uc9d5\uc744 \uc9c0\uc6d0\ud558\ub294 \ub2e4\ub978 API\uc5d0 \ub9e4\uac1c \ubcc0\uc218\ub97c \ucd94\uac00\ud558\uc138\uc694:<\/p>\n<pre><code class=\"language-json\">{\"installment_term\":3}   <br>\r\n<\/code><\/pre>\n<p>b) PromptPay QR\ucf54\ub4dc \uc0dd\uc131.<\/p>\n<pre><code class=\"language-bash\">\uc791\uace1\uac00\uc5d0\uac8c \uc5d4\ub4dc\ub85c\uc774\ub4dc\/QR \ucf54\ub4dc \ud544\uc694    <br>\r\n<\/code><\/pre>\n<p>\uadf8\ub7f0 \ub2e4\uc74c PromptPay URI\uac00 \ud3ec\ud568\ub41c QR \ucf54\ub4dc\ub97c \uc0dd\uc131\ud569\ub2c8\ub2e4:<\/p>\n<pre><code class=\"language-php\">Endroid\\QrCode\\QrCode\ub97c \uc0ac\uc6a9\ud569\ub2c8\ub2e4;     <br>\r\nEndroid\\QrCode\\Writer\\PngWriter\ub97c \uc0ac\uc6a9\ud569\ub2c8\ub2e4;      <br>\r\n     <br>\r\n\ud568\uc218 generatePromptPayQR(float$amount,int|string$target){      <br>\r\n     <br>\r\n    \/ \ud0dc\uad6d \uc740\ud589 \ud45c\uc900\uc5d0 \ub530\ub978 \ud615\uc2dd *\/     <br>\r\n    promptpayUri=sprintf(&quot;00020101021129370016A000000677010111%s530376454%02d%s6304%s&quot;,...);      <br>\r\n          <br>\r\n     qrcode=\uc0c8 Qrcode(promptpayUri);            <br>\r\n          <br>\r\n     writer=new PngWriter();            <br>\r\n          <br>\r\n     \uacb0\uacfc=$\ub77c\uc774\ud130-&gt;\uc4f0\uae30(qrcodE);            <br>\r\n<br>\r\n            header (\"Content-Type:\"\".result-&gt;getMimeType().\"\"\") ;             <br>\r\n<br>\r\n             echo result-getString(); exit();                 <br>\r\n<br>\r\n}                <br>\r\n<\/code><\/pre>\n<hr>\n<p>\uc774 \ub2e8\uacc4\ubcc4 \uac00\uc774\ub4dc\uac00 \ud0dc\uad6d \uacb0\uc81c \ud1b5\ud569\uc744 \uc6d0\ud65c\ud558\uac8c \uc2e4\ud589\ud558\ub294 \ub370 \ub3c4\uc6c0\uc774 \ub418\uae38 \ubc14\ub78d\ub2c8\ub2e4. \ud504\ub85c\ub355\uc158 \ubc30\ud3ec \uc804\uc5d0 \uc0cc\ub4dc\ubc15\uc2a4 \ud14c\uc2a4\ud2b8\ub97c \ucca0\uc800\ud788 \uc218\ud589\ud558\uace0 \ud0dc\uad6d\uc5b4 \uc804\ubb38 \uae30\uc220 \ubc88\uc5ed\uc0ac\ub97c \uace0\uc6a9\ud558\uc5ec \ubaa8\ub4e0 \uc0ac\uc6a9\uc790 \ub300\uba74 \ud504\ub86c\ud504\ud2b8\ub97c \ud655\uc778\ud558\ub294 \uac83\uc744 \uace0\ub824\ud558\uc138\uc694.<\/p>","protected":false},"excerpt":{"rendered":"<p># \ud0dc\uad6d \uacb0\uc81c \uac8c\uc774\ud2b8\uc6e8\uc774\uc5d0 \ub300\ud55c PHP \uc561\uc138\uc2a4 \uc608\uc81c \ud29c\ud1a0\ub9ac\uc5bc 1. \uc900\ube44 \uc0ac\ud56d \uc2dc\uc791\ud558\uae30 \uc804\uc5d0...<\/p>","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[31],"tags":[],"class_list":["post-3146","post","type-post","status-publish","format-standard","hentry","category-31"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v21.9 (Yoast SEO v23.7) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>\u7528PHP\u63a5\u5165\u6cf0\u56fd\u652f\u4ed8\u7f51\u5173\u7684\u5b9e\u4f8b\u6559\u7a0b - DEEKPAY-\u5370\u5ea6\u539f\u751f\u652f\u4ed8|\u5370\u5ea6UPI\u652f\u4ed8|\u5370\u5ea6\u4e09\u65b9\u56db\u65b9\u652f\u4ed8<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.deekpay.com\/ko\/2025\/06\/02\/\u7528php\u63a5\u5165\u6cf0\u56fd\u652f\u4ed8\u7f51\u5173\u7684\u5b9e\u4f8b\u6559\u7a0b\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u7528PHP\u63a5\u5165\u6cf0\u56fd\u652f\u4ed8\u7f51\u5173\u7684\u5b9e\u4f8b\u6559\u7a0b\" \/>\n<meta property=\"og:description\" content=\"# PHP\u63a5\u5165\u6cf0\u56fd\u652f\u4ed8\u7f51\u5173\u5b9e\u4f8b\u6559\u7a0b 1. \u51c6\u5907\u5de5\u4f5c \u5728\u5f00\u59cb\u4e4b&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.deekpay.com\/ko\/2025\/06\/02\/\u7528php\u63a5\u5165\u6cf0\u56fd\u652f\u4ed8\u7f51\u5173\u7684\u5b9e\u4f8b\u6559\u7a0b\/\" \/>\n<meta property=\"og:site_name\" content=\"DEEKPAY-\u5370\u5ea6\u539f\u751f\u652f\u4ed8|\u5370\u5ea6UPI\u652f\u4ed8|\u5370\u5ea6\u4e09\u65b9\u56db\u65b9\u652f\u4ed8\" \/>\n<meta property=\"article:published_time\" content=\"2025-06-02T05:31:44+00:00\" \/>\n<meta name=\"author\" content=\"deekpay\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"deekpay\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.deekpay.com\/2025\/06\/02\/%e7%94%a8php%e6%8e%a5%e5%85%a5%e6%b3%b0%e5%9b%bd%e6%94%af%e4%bb%98%e7%bd%91%e5%85%b3%e7%9a%84%e5%ae%9e%e4%be%8b%e6%95%99%e7%a8%8b\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.deekpay.com\/2025\/06\/02\/%e7%94%a8php%e6%8e%a5%e5%85%a5%e6%b3%b0%e5%9b%bd%e6%94%af%e4%bb%98%e7%bd%91%e5%85%b3%e7%9a%84%e5%ae%9e%e4%be%8b%e6%95%99%e7%a8%8b\/\"},\"author\":{\"name\":\"deekpay\",\"@id\":\"https:\/\/www.deekpay.com\/#\/schema\/person\/91e4e842fdd04f8c957a9f642506f51d\"},\"headline\":\"\u7528PHP\u63a5\u5165\u6cf0\u56fd\u652f\u4ed8\u7f51\u5173\u7684\u5b9e\u4f8b\u6559\u7a0b\",\"datePublished\":\"2025-06-02T05:31:44+00:00\",\"dateModified\":\"2025-06-02T05:31:44+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.deekpay.com\/2025\/06\/02\/%e7%94%a8php%e6%8e%a5%e5%85%a5%e6%b3%b0%e5%9b%bd%e6%94%af%e4%bb%98%e7%bd%91%e5%85%b3%e7%9a%84%e5%ae%9e%e4%be%8b%e6%95%99%e7%a8%8b\/\"},\"wordCount\":25,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.deekpay.com\/#organization\"},\"articleSection\":[\"\u6cf0\u56fd\u652f\u4ed8\"],\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.deekpay.com\/2025\/06\/02\/%e7%94%a8php%e6%8e%a5%e5%85%a5%e6%b3%b0%e5%9b%bd%e6%94%af%e4%bb%98%e7%bd%91%e5%85%b3%e7%9a%84%e5%ae%9e%e4%be%8b%e6%95%99%e7%a8%8b\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.deekpay.com\/2025\/06\/02\/%e7%94%a8php%e6%8e%a5%e5%85%a5%e6%b3%b0%e5%9b%bd%e6%94%af%e4%bb%98%e7%bd%91%e5%85%b3%e7%9a%84%e5%ae%9e%e4%be%8b%e6%95%99%e7%a8%8b\/\",\"url\":\"https:\/\/www.deekpay.com\/2025\/06\/02\/%e7%94%a8php%e6%8e%a5%e5%85%a5%e6%b3%b0%e5%9b%bd%e6%94%af%e4%bb%98%e7%bd%91%e5%85%b3%e7%9a%84%e5%ae%9e%e4%be%8b%e6%95%99%e7%a8%8b\/\",\"name\":\"\u7528PHP\u63a5\u5165\u6cf0\u56fd\u652f\u4ed8\u7f51\u5173\u7684\u5b9e\u4f8b\u6559\u7a0b - DEEKPAY-\u5370\u5ea6\u539f\u751f\u652f\u4ed8|\u5370\u5ea6UPI\u652f\u4ed8|\u5370\u5ea6\u4e09\u65b9\u56db\u65b9\u652f\u4ed8\",\"isPartOf\":{\"@id\":\"https:\/\/www.deekpay.com\/#website\"},\"datePublished\":\"2025-06-02T05:31:44+00:00\",\"dateModified\":\"2025-06-02T05:31:44+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.deekpay.com\/2025\/06\/02\/%e7%94%a8php%e6%8e%a5%e5%85%a5%e6%b3%b0%e5%9b%bd%e6%94%af%e4%bb%98%e7%bd%91%e5%85%b3%e7%9a%84%e5%ae%9e%e4%be%8b%e6%95%99%e7%a8%8b\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.deekpay.com\/2025\/06\/02\/%e7%94%a8php%e6%8e%a5%e5%85%a5%e6%b3%b0%e5%9b%bd%e6%94%af%e4%bb%98%e7%bd%91%e5%85%b3%e7%9a%84%e5%ae%9e%e4%be%8b%e6%95%99%e7%a8%8b\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.deekpay.com\/2025\/06\/02\/%e7%94%a8php%e6%8e%a5%e5%85%a5%e6%b3%b0%e5%9b%bd%e6%94%af%e4%bb%98%e7%bd%91%e5%85%b3%e7%9a%84%e5%ae%9e%e4%be%8b%e6%95%99%e7%a8%8b\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u9996\u9875\",\"item\":\"https:\/\/www.deekpay.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\u7528PHP\u63a5\u5165\u6cf0\u56fd\u652f\u4ed8\u7f51\u5173\u7684\u5b9e\u4f8b\u6559\u7a0b\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.deekpay.com\/#website\",\"url\":\"https:\/\/www.deekpay.com\/\",\"name\":\"DEEKPAY-\u5370\u5ea6\u539f\u751f\u652f\u4ed8|\u5370\u5ea6UPI\u652f\u4ed8|\u5370\u5ea6\u4e09\u65b9\u652f\u4ed8\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/www.deekpay.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.deekpay.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.deekpay.com\/#organization\",\"name\":\"DEEKPAY-\u5370\u5ea6\u539f\u751f\u652f\u4ed8\u548cUPI\u652f\u4ed8\u670d\u52a1\u5546\",\"url\":\"https:\/\/www.deekpay.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/www.deekpay.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/deekpay.com\/wp-content\/uploads\/2024\/11\/LOGO-1.png\",\"contentUrl\":\"https:\/\/deekpay.com\/wp-content\/uploads\/2024\/11\/LOGO-1.png\",\"width\":649,\"height\":191,\"caption\":\"DEEKPAY-\u5370\u5ea6\u539f\u751f\u652f\u4ed8\u548cUPI\u652f\u4ed8\u670d\u52a1\u5546\"},\"image\":{\"@id\":\"https:\/\/www.deekpay.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.deekpay.com\/#\/schema\/person\/91e4e842fdd04f8c957a9f642506f51d\",\"name\":\"deekpay\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/www.deekpay.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/485e931d0b237ba5cfa6c7cea419d88f7e3258b4837d99943e099ff93b458f8c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/485e931d0b237ba5cfa6c7cea419d88f7e3258b4837d99943e099ff93b458f8c?s=96&d=mm&r=g\",\"caption\":\"deekpay\"},\"sameAs\":[\"https:\/\/deekpay.com\"],\"url\":\"https:\/\/www.deekpay.com\/ko\/author\/deekpay\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"\u7528PHP\u63a5\u5165\u6cf0\u56fd\u652f\u4ed8\u7f51\u5173\u7684\u5b9e\u4f8b\u6559\u7a0b - DEEKPAY-\u5370\u5ea6\u539f\u751f\u652f\u4ed8|\u5370\u5ea6UPI\u652f\u4ed8|\u5370\u5ea6\u4e09\u65b9\u56db\u65b9\u652f\u4ed8","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.deekpay.com\/ko\/2025\/06\/02\/\u7528php\u63a5\u5165\u6cf0\u56fd\u652f\u4ed8\u7f51\u5173\u7684\u5b9e\u4f8b\u6559\u7a0b\/","og_locale":"ko_KR","og_type":"article","og_title":"\u7528PHP\u63a5\u5165\u6cf0\u56fd\u652f\u4ed8\u7f51\u5173\u7684\u5b9e\u4f8b\u6559\u7a0b","og_description":"# PHP\u63a5\u5165\u6cf0\u56fd\u652f\u4ed8\u7f51\u5173\u5b9e\u4f8b\u6559\u7a0b 1. \u51c6\u5907\u5de5\u4f5c \u5728\u5f00\u59cb\u4e4b&hellip;","og_url":"https:\/\/www.deekpay.com\/ko\/2025\/06\/02\/\u7528php\u63a5\u5165\u6cf0\u56fd\u652f\u4ed8\u7f51\u5173\u7684\u5b9e\u4f8b\u6559\u7a0b\/","og_site_name":"DEEKPAY-\u5370\u5ea6\u539f\u751f\u652f\u4ed8|\u5370\u5ea6UPI\u652f\u4ed8|\u5370\u5ea6\u4e09\u65b9\u56db\u65b9\u652f\u4ed8","article_published_time":"2025-06-02T05:31:44+00:00","author":"deekpay","twitter_card":"summary_large_image","twitter_misc":{"\uae00\uc4f4\uc774":"deekpay"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.deekpay.com\/2025\/06\/02\/%e7%94%a8php%e6%8e%a5%e5%85%a5%e6%b3%b0%e5%9b%bd%e6%94%af%e4%bb%98%e7%bd%91%e5%85%b3%e7%9a%84%e5%ae%9e%e4%be%8b%e6%95%99%e7%a8%8b\/#article","isPartOf":{"@id":"https:\/\/www.deekpay.com\/2025\/06\/02\/%e7%94%a8php%e6%8e%a5%e5%85%a5%e6%b3%b0%e5%9b%bd%e6%94%af%e4%bb%98%e7%bd%91%e5%85%b3%e7%9a%84%e5%ae%9e%e4%be%8b%e6%95%99%e7%a8%8b\/"},"author":{"name":"deekpay","@id":"https:\/\/www.deekpay.com\/#\/schema\/person\/91e4e842fdd04f8c957a9f642506f51d"},"headline":"\u7528PHP\u63a5\u5165\u6cf0\u56fd\u652f\u4ed8\u7f51\u5173\u7684\u5b9e\u4f8b\u6559\u7a0b","datePublished":"2025-06-02T05:31:44+00:00","dateModified":"2025-06-02T05:31:44+00:00","mainEntityOfPage":{"@id":"https:\/\/www.deekpay.com\/2025\/06\/02\/%e7%94%a8php%e6%8e%a5%e5%85%a5%e6%b3%b0%e5%9b%bd%e6%94%af%e4%bb%98%e7%bd%91%e5%85%b3%e7%9a%84%e5%ae%9e%e4%be%8b%e6%95%99%e7%a8%8b\/"},"wordCount":25,"commentCount":0,"publisher":{"@id":"https:\/\/www.deekpay.com\/#organization"},"articleSection":["\u6cf0\u56fd\u652f\u4ed8"],"inLanguage":"ko-KR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.deekpay.com\/2025\/06\/02\/%e7%94%a8php%e6%8e%a5%e5%85%a5%e6%b3%b0%e5%9b%bd%e6%94%af%e4%bb%98%e7%bd%91%e5%85%b3%e7%9a%84%e5%ae%9e%e4%be%8b%e6%95%99%e7%a8%8b\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.deekpay.com\/2025\/06\/02\/%e7%94%a8php%e6%8e%a5%e5%85%a5%e6%b3%b0%e5%9b%bd%e6%94%af%e4%bb%98%e7%bd%91%e5%85%b3%e7%9a%84%e5%ae%9e%e4%be%8b%e6%95%99%e7%a8%8b\/","url":"https:\/\/www.deekpay.com\/2025\/06\/02\/%e7%94%a8php%e6%8e%a5%e5%85%a5%e6%b3%b0%e5%9b%bd%e6%94%af%e4%bb%98%e7%bd%91%e5%85%b3%e7%9a%84%e5%ae%9e%e4%be%8b%e6%95%99%e7%a8%8b\/","name":"\u7528PHP\u63a5\u5165\u6cf0\u56fd\u652f\u4ed8\u7f51\u5173\u7684\u5b9e\u4f8b\u6559\u7a0b - DEEKPAY-\u5370\u5ea6\u539f\u751f\u652f\u4ed8|\u5370\u5ea6UPI\u652f\u4ed8|\u5370\u5ea6\u4e09\u65b9\u56db\u65b9\u652f\u4ed8","isPartOf":{"@id":"https:\/\/www.deekpay.com\/#website"},"datePublished":"2025-06-02T05:31:44+00:00","dateModified":"2025-06-02T05:31:44+00:00","breadcrumb":{"@id":"https:\/\/www.deekpay.com\/2025\/06\/02\/%e7%94%a8php%e6%8e%a5%e5%85%a5%e6%b3%b0%e5%9b%bd%e6%94%af%e4%bb%98%e7%bd%91%e5%85%b3%e7%9a%84%e5%ae%9e%e4%be%8b%e6%95%99%e7%a8%8b\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.deekpay.com\/2025\/06\/02\/%e7%94%a8php%e6%8e%a5%e5%85%a5%e6%b3%b0%e5%9b%bd%e6%94%af%e4%bb%98%e7%bd%91%e5%85%b3%e7%9a%84%e5%ae%9e%e4%be%8b%e6%95%99%e7%a8%8b\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.deekpay.com\/2025\/06\/02\/%e7%94%a8php%e6%8e%a5%e5%85%a5%e6%b3%b0%e5%9b%bd%e6%94%af%e4%bb%98%e7%bd%91%e5%85%b3%e7%9a%84%e5%ae%9e%e4%be%8b%e6%95%99%e7%a8%8b\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u9996\u9875","item":"https:\/\/www.deekpay.com\/"},{"@type":"ListItem","position":2,"name":"\u7528PHP\u63a5\u5165\u6cf0\u56fd\u652f\u4ed8\u7f51\u5173\u7684\u5b9e\u4f8b\u6559\u7a0b"}]},{"@type":"WebSite","@id":"https:\/\/www.deekpay.com\/#website","url":"https:\/\/www.deekpay.com\/","name":"DEEKPAY-\u5370\u5ea6\u539f\u751f\u652f\u4ed8|\u5370\u5ea6UPI\u652f\u4ed8|\u5370\u5ea6\u4e09\u65b9\u652f\u4ed8","description":"","publisher":{"@id":"https:\/\/www.deekpay.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.deekpay.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Organization","@id":"https:\/\/www.deekpay.com\/#organization","name":"DEEKPAY-\u5370\u5ea6\u539f\u751f\u652f\u4ed8\u548cUPI\u652f\u4ed8\u670d\u52a1\u5546","url":"https:\/\/www.deekpay.com\/","logo":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/www.deekpay.com\/#\/schema\/logo\/image\/","url":"https:\/\/deekpay.com\/wp-content\/uploads\/2024\/11\/LOGO-1.png","contentUrl":"https:\/\/deekpay.com\/wp-content\/uploads\/2024\/11\/LOGO-1.png","width":649,"height":191,"caption":"DEEKPAY-\u5370\u5ea6\u539f\u751f\u652f\u4ed8\u548cUPI\u652f\u4ed8\u670d\u52a1\u5546"},"image":{"@id":"https:\/\/www.deekpay.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.deekpay.com\/#\/schema\/person\/91e4e842fdd04f8c957a9f642506f51d","name":"deekpay","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/www.deekpay.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/485e931d0b237ba5cfa6c7cea419d88f7e3258b4837d99943e099ff93b458f8c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/485e931d0b237ba5cfa6c7cea419d88f7e3258b4837d99943e099ff93b458f8c?s=96&d=mm&r=g","caption":"deekpay"},"sameAs":["https:\/\/deekpay.com"],"url":"https:\/\/www.deekpay.com\/ko\/author\/deekpay\/"}]}},"_links":{"self":[{"href":"https:\/\/www.deekpay.com\/ko\/wp-json\/wp\/v2\/posts\/3146","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.deekpay.com\/ko\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.deekpay.com\/ko\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.deekpay.com\/ko\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.deekpay.com\/ko\/wp-json\/wp\/v2\/comments?post=3146"}],"version-history":[{"count":1,"href":"https:\/\/www.deekpay.com\/ko\/wp-json\/wp\/v2\/posts\/3146\/revisions"}],"predecessor-version":[{"id":3149,"href":"https:\/\/www.deekpay.com\/ko\/wp-json\/wp\/v2\/posts\/3146\/revisions\/3149"}],"wp:attachment":[{"href":"https:\/\/www.deekpay.com\/ko\/wp-json\/wp\/v2\/media?parent=3146"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.deekpay.com\/ko\/wp-json\/wp\/v2\/categories?post=3146"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.deekpay.com\/ko\/wp-json\/wp\/v2\/tags?post=3146"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}