{"id":3366,"date":"2025-06-23T14:19:45","date_gmt":"2025-06-23T06:19:45","guid":{"rendered":"https:\/\/www.deekpay.com\/?p=3366"},"modified":"2025-06-23T14:19:45","modified_gmt":"2025-06-23T06:19:45","slug":"%e7%94%a8php%ef%bc%8fnode-js%e5%ae%9e%e7%8e%b0%e5%b7%b4%e5%9f%ba%e6%96%af%e5%9d%a6%e6%94%af%e4%bb%98%e6%8e%a5%e5%8f%a3%e5%af%b9%e6%8e%a5","status":"publish","type":"post","link":"https:\/\/www.deekpay.com\/ko\/2025\/06\/23\/%e7%94%a8php%ef%bc%8fnode-js%e5%ae%9e%e7%8e%b0%e5%b7%b4%e5%9f%ba%e6%96%af%e5%9d%a6%e6%94%af%e4%bb%98%e6%8e%a5%e5%8f%a3%e5%af%b9%e6%8e%a5\/","title":{"rendered":"PHP\/Node.js\uc640 \ud30c\ud0a4\uc2a4\ud0c4 \uacb0\uc81c \uc778\ud130\ud398\uc774\uc2a4 \ub3c4\ud0b9"},"content":{"rendered":"<h1>\ud30c\ud0a4\uc2a4\ud0c4 \uacb0\uc81c \uc778\ud130\ud398\uc774\uc2a4 \ub9e4\uce6d \uac00\uc774\ub4dc(PHP\/Node.js)<\/h1>\n<h2>\uc77c\ubc18\uc801\uc778 \ud30c\ud0a4\uc2a4\ud0c4 \uacb0\uc81c \uac8c\uc774\ud2b8\uc6e8\uc774<\/h2>\n<p>\ud30c\ud0a4\uc2a4\ud0c4\uc758 \uc8fc\uc694 \uacb0\uc81c \uac8c\uc774\ud2b8\uc6e8\uc774\ub294 \ub2e4\uc74c\uacfc \uac19\uc2b5\ub2c8\ub2e4:<\/p>\n<ol>\n<li>JazzCash<\/li>\n<li>EasyPaisa<\/li>\n<li>HBL Pay<\/li>\n<li>UBL \uc634\ub2c8<\/li>\n<li>MCB \ub77c\uc774\ud2b8<\/li>\n<\/ol>\n<p>JazzCash\ub97c \uc608\ub85c \ub4e4\uc5b4 PHP \ubc0f Node.js\uc640 \uc778\ud130\ud398\uc774\uc2a4\ud558\ub294 \ubc29\ubc95\uc744 \ubcf4\uc5ec\ub4dc\ub9ac\uaca0\uc2b5\ub2c8\ub2e4.<\/p>\n<h2>JazzCash API \ub3c4\ud0b9(PHP \uad6c\ud604)<\/h2>\n<h3>1. \uad6c\uc131 \ub9e4\uac1c\ubcc0\uc218<\/h3>\n<pre><code class=\"language-php\">$merchant_id = \"YOUR_MERCHANT_ID\";<br>\r\n$password = \"YOUR_PASSWORD\";<br>\r\n$integrity_salt = \"YOUR_INTEGRITY_SALT\";<br>\r\n$return_url = \"https:\/\/yourwebsite.com\/return.php\";<br>\r\n<\/code><\/pre>\n<h3>2. \uc694\uccad \ud568\uc218 \ub9cc\ub4e4\uae30<\/h3>\n<pre><code class=\"language-php\">function createJazzCashRequest($amount, $orderId) {<br>\r\n    \uae00\ub85c\ubc8c $merchant_id, $password, $integrity_salt, $return_url;<br>\r\n    <br>\r\n    \ub0a0\uc9dc_\uae30\ubcf8_\uc2dc\uac04\ub300_\uc124\uc815('\uc544\uc2dc\uc544\/\uce74\ub77c\uce58').<br>\r\n    $dateTime = \uc0c8\ub85c\uc6b4 DateTime();<br>\r\n    $pp_TxnDateTime = $dateTime-&gt;format('YmdHis');<br>\r\n    <br>\r\n    \/\/ \ud2b8\ub79c\uc7ad\uc158 \ub9cc\ub8cc \uc2dc\uac04(\uc120\ud0dd \uc0ac\ud56d)<br>\r\n    $expiryHours = '24';<br>\r\n    <br>\r\n    \/\/ \ud574\uc2dc \uc0dd\uc131\uc744 \uc704\ud55c \ub370\uc774\ud130 \ubc30\uc5f4 \uc900\ube44<br>\r\n    $dataToHash = array(<br>\r\n        'pp_Version' =&gt; '1.1',<br>\r\n        'pp_TxnType' =&gt; '',<br>\r\n        'pp_Language' =&gt; 'EN',<br>\r\n        'pp_MerchantID' =&gt; trim($merchant_id),<br>\r\n        'pp_SubMerchantID' =&gt; '',<br>\r\n        'pp_Password' =&gt; trim($password),<br>\r\n        'pp_BankID' =&gt; '',<br>\r\n        'pp_ProductID' =&gt; '',<br>\r\n        \/\/ ... \uae30\ud0c0 \ud544\uc218 \ud544\ub4dc...<br>\r\n        <br>\r\n     );<br>\r\n     <br>\r\n     \ubc18\ud658 json_encode(array(<br>\r\n         ...<br>\r\n     ));<br>\r\n}<br>\r\n<\/code><\/pre>\n<h2>Node.js \uad6c\ud604 \uc608\uc81c<\/h2>\n<h3>\ud544\uc694\ud55c \uc885\uc18d\uc131 \uc124\uce58<\/h3>\n<pre><code class=\"language-bash\">npm \uc124\uce58 axios crypto-js uuid \uc21c\uac04 \uc775\uc2a4\ud504\ub808\uc2a4 \ubcf8\ubb38-\ud30c\uc11c \ub3c4\ud150\ube0c \ucf54\ub974 \ud5ec\uba67 \ubaa8\uac74 \uc708\uc2a4\ud134 \uc775\uc2a4\ud504\ub808\uc2a4-\uac80\uc99d\uc790 http-status-codes bcryptjs \uc555\ucd95\ub960-\ud55c\ub3c4-\ub808\ub514\uc2a4 \ub808\ub514\uc2a4 \uc5f0\uacb0-\ub808\ub514\uc2a4 \uc138\uc158-\ud30c\uc77c-\uc2a4\ud1a0\uc5b4 \uc775\uc2a4\ud504\ub808\uc2a4-\uc138\uc158 \ucfe0\ud0a4-\ud30c\uc11c csurf \ub178\ub4dc- \uce90\uc2dc \uc694\uccad-\uc57d\uc18d \ud798\ub4e0-\ucfe0\ud0a4 \uce58\uc5b4\ub9ac\uc624 \uc778\ud615\uadf9 \uc0e4\ud504 \uba40\ud2f0\ud130 aws-sdk \ub178\ub4dc \uba54\uc77c\ub7ec \uc18c\ucf13.io \uc5ec\uad8c \uc5ec\uad8c-\ub85c\uceec \uc5ec\uad8c-jwt @hapi\/joi@ 17.x.x \ud5ec\uba67 xss-clean hpp express-mongo-sanitize toobusy-js \ub178\ub4dc-\ud398\uce58 \ud3fc-\ub370\uc774\ud130 xml2js fast-xml-parser \ube44\ub204 q libphonenumber-js country-list \uad6d\uac00 \ubaa9\ub85d \ud1b5\ud654 \ud3ec\ub9f7\ud130 \ud68c\uacc4 \ub3c8 decimal.js \ud070 \ub3c8 \uc22b\uc790 \uc22b\uc790 \ud68c\uacc4-js d3-\ud3ec\ub9f7 \uad6d\uc81c \uba54\uc2dc\uc9c0 \ud3ec\ub9f7 react-intl format-number-with-string \uc608\uc05c-\ubc14\uc774\ud2b8 \ud30c\uc77c\uc0ac\uc774\uc988 \ubc14\uc774\ud2b8 \uc778\uac04\ud654-\uae30\uac04 \uc21c\uac04-\uc2dc\uac04\ub300 \ub7ed\uc2a8 \ub0a0\uc9dc-fns timeago.js \ud06c\ub85c\ub178-\ub178\ub4dc \ub098\uc911\uc5d0 \ub178\ub4dc- \uc77c\uc815 \uc758\uc81c bull kue bee-queue rabbitmq amqplib ioredis pg mysql mysql2 sqlite3 \uc9c0\ub8e8\ud55c mssql oracledb knex \ucc45\uc7a5 sequelize typeorm \ubabd\uad6c\uc2a4 \ubabd\uace0DB \uc7ac\uac80\ud1a0 \ub370\uc774\ud130\ubca0\uc774\uc2a4 \uce74\uc6b0\uce58\ubca0\uc774\uc2a4 \ub2e4\uc774\ub0b4\ubbf9DB \uc5d8\ub77c\uc2a4\ud2f1\uc11c\uce58 \ud30c\uc774\uc5b4\ubca0\uc774\uc2a4 \uc5b4\ub4dc\ubbfc \ud30c\uc6b0\uce58DB rxjs \ub85c\ub2e4\uc2dc \ubc11\uc904 \ub78c\ub2e4 \ubd88\ubcc0 \ube44\ub3d9\uae30 \ube14\ub8e8\ubc84\ub4dc q \uc57d\uc18d p-\uc7ac\uc2dc\ub3c4 p -limit p-map p-progress p-defer delay sleep-promise retry axios-retry superagent got needle \uc694\uccad \uc694\uccad-promise-native fetch isomorphic- fetch cross-fetch ky bent undici ws \uc6f9\uc18c\ucf13 \uc18c\ucf13.io-\ud074\ub77c\uc774\uc5b8\ud2b8 \uc18c\ucf13 \uae43\ud138 \ud398\uc774 \ud478\uc154 \ud478\uc154<br>\r\n<\/code><\/pre>\n<h2>JazzCash API \ub3c4\ud0b9(Node.js \uad6c\ud604)<\/h2>\n<h3>1. \ud544\uc694\ud55c \uc885\uc18d\uc131 \uc124\uce58<\/h3>\n<pre><code class=\"language-bash\">\uc5d4\ud53c\uc5e0 \uc124\uce58 \uc561\uc2dc\uc624\uc2a4 \ud06c\ub9bd\ud1a0 \ubaa8\uba58\ud2b8 UUID QS<br>\r\n<\/code><\/pre>\n<h3>2. \uad6c\uc131 \ub9e4\uac1c\ubcc0\uc218(\uc0dd\uc131 <code>.env<\/code> \ubb38\uc11c)<\/h3>\n<pre><code>\uc7ac\uc988\uce90\uc2dc_\ud310\ub9e4\uc790_ID=\uadc0\ud558\uc758_\ud310\ub9e4\uc790_ID<br>\r\n\uc7ac\uc988\uce90\uc2dc \ube44\ubc00\ubc88\ud638 = \uc0ac\uc6a9\uc790 \ube44\ubc00\ubc88\ud638<br>\r\n\uc7ac\uc988\uce90\uc2dc_\ubb34\uacb0\uc131_\uc18c\uae08=your_salt<br>\r\n\uc7ac\uc988\uce90\uc2dc \ubc18\ud658 URL=https:\/\/yourdomain.com\/payment\/callback<br>\r\n<\/code><\/pre>\n<h3>3. Node.js \ud575\uc2ec \uad6c\ud604 \ucf54\ub4dc<\/h3>\n<pre><code class=\"language-javascript\">const crypto = require('crypto');<br>\r\nconst moment = require('moment');<br>\r\nconst axios = require('axios');<br>\r\nrequire('dotenv').config();<br>\r\n<br>\r\n\uc7ac\uc988\uce90\uc2dc\uacb0\uc81c \ud074\ub798\uc2a4 {<br>\r\n    constructor() {<br>\r\n        this.config = {<br>\r\n            merchantId: process.env.JAZZCASH_MERCHANT_ID,<br>\r\n            \ube44\ubc00\ubc88\ud638: process.env.JAZZCASH_PASSWORD,<br>\r\n            integritySalt: process.env.JAZZCASH_INTEGRITY_SALT,<br>\r\n            \ubc18\ud658 URL: process.env.JAZZCASH_RETURN_URL,<br>\r\n            apiUrl: 'https:\/\/sandbox.jazzcash.com.pk\/ApplicationAPI\/API\/Payment\/DoTransaction'<br>\r\n        };<br>\r\n    }<br>\r\n<br>\r\n    \/\/ JazzCash\uc5d0 \ud544\uc694\ud55c \ubcf4\uc548 \ud574\uc2dc \uc0dd\uc131<br>\r\n    generateSecureHash(data) {<br>\r\n        const sortedKeys = Object.keys(data).sort();<br>\r\n        let message = '';<br>\r\n        <br>\r\n        sortedKeys.forEach(key =&gt; {<br>\r\n            if(key! == 'pp_SecureHash') {<br>\r\n                \uba54\uc2dc\uc9c0 += `${\ud0a4}=${\ub370\uc774\ud130[\ud0a4]}&amp;`;<br>\r\n            }<br>\r\n        });<br>\r\n        <br>\r\n        message += this.config.integritySalt;<br>\r\n        <br>\r\n        return crypto.createHash('sha256')<br>\r\n                     .update(\uba54\uc2dc\uc9c0)<br>\r\n                     .digest('hex')<br>\r\n                     .toUpperCase();<br>\r\n    }<br>\r\n<br>\r\n    \/\/ \uacb0\uc81c \uc694\uccad \ud398\uc774\ub85c\ub4dc \uc0dd\uc131 <br>\r\n    async createPaymentRequest(orderData) {<br>\r\n        const dateTimeString = moment().format('YYYYMMDDHHmmss');<br>\r\n        <br>\r\n        const payload = {  <br>\r\n            pp_Version: \"1.1\",<br>\r\n            pp_TxnType: \"MWALLET\",<br>\r\n            pp_Language: \"EN\".<br>\r\n            <br>\r\n           \/\/ ... \uae30\ud0c0 \ud544\uc218 \ud544\ub4dc...<br>\r\n            <br>\r\n           pp_Amount : orderData.amount.toString(),<br>\r\n           pp_BillReference : \uc8fc\ubb38\ub370\uc774\ud130.\uc8fc\ubb38\uc544\uc774\ub514, <br>\r\n           <br>\r\n          \/\/ ... \uae30\ud0c0 \ud544\ub4dc ...<br>\r\n          <br>\r\n          };<br>\r\n<br>\r\n       payload.pp_SecureHash = this.generateSecureHash(payload);<br>\r\n       <br>\r\n       \uc2dc\ub3c4 {   <br>\r\n         const response await axios.post(this.config.apiUl, qs.stringify(payload),{<br>\r\n             \ud5e4\ub354:{<br>\r\n                 '\ucf58\ud150\uce20 \uc720\ud615':'application\/x-www-form-urlencoded'<br>\r\n             }<br>\r\n         });    <br>\r\n         <br>\r\n         \uc751\ub2f5.\ub370\uc774\ud130\ub97c \ubc18\ud658\ud569\ub2c8\ub2e4;     <br>\r\n       } catch(error){<br>\r\n          \uc0c8\ub85c\uc6b4 \uc624\ub958(`\uacb0\uc81c \uc694\uccad\uc5d0 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4 ${error.message}`)\ub97c \ub358\uc9d1\ub2c8\ub2e4;<br>\r\n       }      <br>\r\n     }<br>\r\n}<br>\r\nmodule.exports=new JazzCashPayment();  <br>\r\n<\/code><\/pre>\n<h2>PHP \ucf5c\ubc31 \ucc98\ub9ac \uc608\uc81c<\/h2>\n<p>\uacb0\uc81c\uac00 \uc644\ub8cc\ub418\uba74 JazzCash\uc5d0\uc11c return_url\ub85c \ub2e4\uc2dc \uc804\ud654\ub97c \ub4dc\ub9bd\ub2c8\ub2e4.<\/p>\n<pre><code class=\"language-php\">&lt;?php <br>\r\n<br>\r\n\ud568\uc218 verifyCallback($postData){<br>\r\n   $received_hash=$post_data['pp_Secure_Hash'];<br>\r\n   <br>\r\n   unset($post_data['pp_Secure_Hash']);<br>\r\n   <br>\r\n   ksort($post_data).<br>\r\n   <br>\r\n   $message='';<br>\r\n   <br>\r\n   foreach ($post_data as $key =&gt; $value){     <br>\r\n      if(!empty($value)){       <br>\r\n         $message . = \"$key=$value&amp;\" ;      <br>\r\n      }    <br>\r\n   }<br>\r\n   <br>\r\n   $message.=INTEGRITY_SALT;<br>\r\n   <br>\r\n\/\/ \ud574\uc2dc\uac00 \uc77c\uce58\ud558\ub294\uc9c0 \ud655\uc778...  <br>\r\n<br>\r\nif(strtoupper(hash(\"sha256\",$message))==$received_hash){    <br>\r\n     \/\/\uc131\uacf5 \ud655\uc778, \ud504\ub85c\uc138\uc2a4 \uc8fc\ubb38 \ub85c\uc9c1...  <br>\r\n} else{    <br>\r\n     header(\"HTTP\/1.0 \uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 \uc694\uccad\"); exit();  <br>\r\n}  <br>\r\n<br>\r\n? &gt;<br>\r\n<\/code><\/pre>\n<h2>Node.js \ucf5c\ubc31 \ucc98\ub9ac \uc608\uc81c<\/h2>\n<pre><code class=\"language-javascript\">\ub77c\uc6b0\ud130.post('\/payment\/callback',async(req,res)=&gt;{<br>\r\n try{<br>\r\n     const receivedHash=req.body.pp_Secure_Hash;<br>\r\n     <br>\r\n     req.body.pp.Secure.Hash\ub97c \uc0ad\uc81c\ud569\ub2c8\ub2e4;    <br>\r\n<br>\r\n\/\/ \uba54\uc2dc\uc9c0 \ubb38\uc790\uc5f4 \uc815\ub82c \ubc0f \uad6c\uc131...<br>\r\n<br>\r\nconst calculatedhash=crypto.createHah(...) ;<br>\r\n<br>\r\nif(calculatedhash===receivedhash.toUpperCase()){<br>\r\n      await Order.updateOne(<br>\r\n          {orderid}.<br>\r\n          {$set:{status:\"paid\"}}<br>\r\n      );<br>\r\n      <br>\r\n      res.sendStatus(200);         <br>\r\n}else{<br>\r\n res.status(400).send(\"\uc798\ubabb\ub41c \ucf5c\ubc31\");<br>\r\n}<br>\r\n<br>\r\n}catch(err){<br>\r\n console.error(err);<br>\r\n res.sendStatus(500);}<br>\r\n});<br>\r\n<\/code><\/pre>\n<h2><strong>\ubcf4\uc548 \uad8c\uc7a5 \uc0ac\ud56d<\/strong><\/h2>\n<p>\uad6c\ud604\ud558\ub294 \ub3d9\uc548 \uc8fc\uc758\ub97c \uae30\uc6b8\uc5ec\uc57c \ud569\ub2c8\ub2e4:<\/p>\n<p>\u2705 <strong>HTTPS<\/strong> -\ubaa8\ub4e0 \ud1b5\uc2e0\uc774 SSL\/TLS \uc554\ud638\ud654\ub97c \uc0ac\uc6a9\ud558\uc5ec \ub370\uc774\ud130\ub97c \uc804\uc1a1\ud558\ub294\uc9c0 \ud655\uc778\ud569\ub2c8\ub2e4.<\/p>\n<p>\u2705 <strong>\uc785\ub825 \uc720\ud6a8\uc131 \uac80\uc0ac<\/strong> -\uc785\ub825\ub418\ub294 \ubaa8\ub4e0 \ud30c\ub77c\ubbf8\ud130\uc640 \uae08\uc561 \uac12\uc744 \uc5c4\uaca9\ud558\uac8c \ud655\uc778\ud569\ub2c8\ub2e4.<\/p>\n<p>\u2705 <strong>\ub85c\uae45<\/strong> -\uac10\uc0ac \ubc0f \ubb38\uc81c \ud574\uacb0\uc744 \uc704\ud55c \uac70\ub798 \uc694\uccad \ubc0f \uc751\ub2f5\uc5d0 \ub300\ud55c \uc790\uc138\ud55c \ub85c\uae45.<\/p>\n<p>\u2705 <strong>\uc624\ub958 \ucc98\ub9ac<\/strong> -\ubbfc\uac10\ud55c \uc815\ubcf4\uac00 \ub178\ucd9c\ub418\uc9c0 \uc54a\ub3c4\ub85d \uc608\uc678\ub97c \ud6a8\uc728\uc801\uc73c\ub85c \ud3ec\ucc29\ud558\uace0 \ucc98\ub9ac\ud569\ub2c8\ub2e4.<\/p>\n<p>\uc774 \ucf54\ub4dc \uc2a4\ub2c8\ud3ab\uc774 \ud30c\ud0a4\uc2a4\ud0c4 \uacb0\uc81c \uc2dc\uc2a4\ud15c\uc744 \uc6d0\ud65c\ud558\uac8c \ud1b5\ud569\ud558\ub294 \ub370 \ub3c4\uc6c0\uc774 \ub418\uae38 \ubc14\ub78d\ub2c8\ub2e4! \ub354 \uc790\uc138\ud55c \ubb38\uc11c\uac00 \ud544\uc694\ud558\uac70\ub098 \ud2b9\uc815 \ubb38\uc81c\uac00 \ubc1c\uc0dd\ud558\uba74 \ucd94\uac00\ub85c \ub17c\uc758\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>","protected":false},"excerpt":{"rendered":"<p>\ud30c\ud0a4\uc2a4\ud0c4 \uacb0\uc81c \uc778\ud130\ud398\uc774\uc2a4 \ub9e4\uce6d \uac00\uc774\ub4dc (PHP\/Node.js) \uacf5\ud1b5 \ubc14\uc774...<\/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":[37],"tags":[],"class_list":["post-3366","post","type-post","status-publish","format-standard","hentry","category-37"],"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\uff0fNode.js\u5b9e\u73b0\u5df4\u57fa\u65af\u5766\u652f\u4ed8\u63a5\u53e3\u5bf9\u63a5 - 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\/23\/\u7528php\uff0fnode-js\u5b9e\u73b0\u5df4\u57fa\u65af\u5766\u652f\u4ed8\u63a5\u53e3\u5bf9\u63a5\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u7528PHP\uff0fNode.js\u5b9e\u73b0\u5df4\u57fa\u65af\u5766\u652f\u4ed8\u63a5\u53e3\u5bf9\u63a5\" \/>\n<meta property=\"og:description\" content=\"\u5df4\u57fa\u65af\u5766\u652f\u4ed8\u63a5\u53e3\u5bf9\u63a5\u6307\u5357 (PHP\/Node.js) \u5e38\u89c1\u5df4&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.deekpay.com\/ko\/2025\/06\/23\/\u7528php\uff0fnode-js\u5b9e\u73b0\u5df4\u57fa\u65af\u5766\u652f\u4ed8\u63a5\u53e3\u5bf9\u63a5\/\" \/>\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-23T06:19:45+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\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"3\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.deekpay.com\/2025\/06\/23\/%e7%94%a8php%ef%bc%8fnode-js%e5%ae%9e%e7%8e%b0%e5%b7%b4%e5%9f%ba%e6%96%af%e5%9d%a6%e6%94%af%e4%bb%98%e6%8e%a5%e5%8f%a3%e5%af%b9%e6%8e%a5\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.deekpay.com\/2025\/06\/23\/%e7%94%a8php%ef%bc%8fnode-js%e5%ae%9e%e7%8e%b0%e5%b7%b4%e5%9f%ba%e6%96%af%e5%9d%a6%e6%94%af%e4%bb%98%e6%8e%a5%e5%8f%a3%e5%af%b9%e6%8e%a5\/\"},\"author\":{\"name\":\"deekpay\",\"@id\":\"https:\/\/www.deekpay.com\/#\/schema\/person\/91e4e842fdd04f8c957a9f642506f51d\"},\"headline\":\"\u7528PHP\uff0fNode.js\u5b9e\u73b0\u5df4\u57fa\u65af\u5766\u652f\u4ed8\u63a5\u53e3\u5bf9\u63a5\",\"datePublished\":\"2025-06-23T06:19:45+00:00\",\"dateModified\":\"2025-06-23T06:19:45+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.deekpay.com\/2025\/06\/23\/%e7%94%a8php%ef%bc%8fnode-js%e5%ae%9e%e7%8e%b0%e5%b7%b4%e5%9f%ba%e6%96%af%e5%9d%a6%e6%94%af%e4%bb%98%e6%8e%a5%e5%8f%a3%e5%af%b9%e6%8e%a5\/\"},\"wordCount\":42,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.deekpay.com\/#organization\"},\"articleSection\":[\"\u5df4\u57fa\u65af\u5766\u652f\u4ed8\"],\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.deekpay.com\/2025\/06\/23\/%e7%94%a8php%ef%bc%8fnode-js%e5%ae%9e%e7%8e%b0%e5%b7%b4%e5%9f%ba%e6%96%af%e5%9d%a6%e6%94%af%e4%bb%98%e6%8e%a5%e5%8f%a3%e5%af%b9%e6%8e%a5\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.deekpay.com\/2025\/06\/23\/%e7%94%a8php%ef%bc%8fnode-js%e5%ae%9e%e7%8e%b0%e5%b7%b4%e5%9f%ba%e6%96%af%e5%9d%a6%e6%94%af%e4%bb%98%e6%8e%a5%e5%8f%a3%e5%af%b9%e6%8e%a5\/\",\"url\":\"https:\/\/www.deekpay.com\/2025\/06\/23\/%e7%94%a8php%ef%bc%8fnode-js%e5%ae%9e%e7%8e%b0%e5%b7%b4%e5%9f%ba%e6%96%af%e5%9d%a6%e6%94%af%e4%bb%98%e6%8e%a5%e5%8f%a3%e5%af%b9%e6%8e%a5\/\",\"name\":\"\u7528PHP\uff0fNode.js\u5b9e\u73b0\u5df4\u57fa\u65af\u5766\u652f\u4ed8\u63a5\u53e3\u5bf9\u63a5 - 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-23T06:19:45+00:00\",\"dateModified\":\"2025-06-23T06:19:45+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.deekpay.com\/2025\/06\/23\/%e7%94%a8php%ef%bc%8fnode-js%e5%ae%9e%e7%8e%b0%e5%b7%b4%e5%9f%ba%e6%96%af%e5%9d%a6%e6%94%af%e4%bb%98%e6%8e%a5%e5%8f%a3%e5%af%b9%e6%8e%a5\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.deekpay.com\/2025\/06\/23\/%e7%94%a8php%ef%bc%8fnode-js%e5%ae%9e%e7%8e%b0%e5%b7%b4%e5%9f%ba%e6%96%af%e5%9d%a6%e6%94%af%e4%bb%98%e6%8e%a5%e5%8f%a3%e5%af%b9%e6%8e%a5\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.deekpay.com\/2025\/06\/23\/%e7%94%a8php%ef%bc%8fnode-js%e5%ae%9e%e7%8e%b0%e5%b7%b4%e5%9f%ba%e6%96%af%e5%9d%a6%e6%94%af%e4%bb%98%e6%8e%a5%e5%8f%a3%e5%af%b9%e6%8e%a5\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u9996\u9875\",\"item\":\"https:\/\/www.deekpay.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\u7528PHP\uff0fNode.js\u5b9e\u73b0\u5df4\u57fa\u65af\u5766\u652f\u4ed8\u63a5\u53e3\u5bf9\u63a5\"}]},{\"@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\uff0fNode.js\u5b9e\u73b0\u5df4\u57fa\u65af\u5766\u652f\u4ed8\u63a5\u53e3\u5bf9\u63a5 - 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\/23\/\u7528php\uff0fnode-js\u5b9e\u73b0\u5df4\u57fa\u65af\u5766\u652f\u4ed8\u63a5\u53e3\u5bf9\u63a5\/","og_locale":"ko_KR","og_type":"article","og_title":"\u7528PHP\uff0fNode.js\u5b9e\u73b0\u5df4\u57fa\u65af\u5766\u652f\u4ed8\u63a5\u53e3\u5bf9\u63a5","og_description":"\u5df4\u57fa\u65af\u5766\u652f\u4ed8\u63a5\u53e3\u5bf9\u63a5\u6307\u5357 (PHP\/Node.js) \u5e38\u89c1\u5df4&hellip;","og_url":"https:\/\/www.deekpay.com\/ko\/2025\/06\/23\/\u7528php\uff0fnode-js\u5b9e\u73b0\u5df4\u57fa\u65af\u5766\u652f\u4ed8\u63a5\u53e3\u5bf9\u63a5\/","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-23T06:19:45+00:00","author":"deekpay","twitter_card":"summary_large_image","twitter_misc":{"\uae00\uc4f4\uc774":"deekpay","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"3\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.deekpay.com\/2025\/06\/23\/%e7%94%a8php%ef%bc%8fnode-js%e5%ae%9e%e7%8e%b0%e5%b7%b4%e5%9f%ba%e6%96%af%e5%9d%a6%e6%94%af%e4%bb%98%e6%8e%a5%e5%8f%a3%e5%af%b9%e6%8e%a5\/#article","isPartOf":{"@id":"https:\/\/www.deekpay.com\/2025\/06\/23\/%e7%94%a8php%ef%bc%8fnode-js%e5%ae%9e%e7%8e%b0%e5%b7%b4%e5%9f%ba%e6%96%af%e5%9d%a6%e6%94%af%e4%bb%98%e6%8e%a5%e5%8f%a3%e5%af%b9%e6%8e%a5\/"},"author":{"name":"deekpay","@id":"https:\/\/www.deekpay.com\/#\/schema\/person\/91e4e842fdd04f8c957a9f642506f51d"},"headline":"\u7528PHP\uff0fNode.js\u5b9e\u73b0\u5df4\u57fa\u65af\u5766\u652f\u4ed8\u63a5\u53e3\u5bf9\u63a5","datePublished":"2025-06-23T06:19:45+00:00","dateModified":"2025-06-23T06:19:45+00:00","mainEntityOfPage":{"@id":"https:\/\/www.deekpay.com\/2025\/06\/23\/%e7%94%a8php%ef%bc%8fnode-js%e5%ae%9e%e7%8e%b0%e5%b7%b4%e5%9f%ba%e6%96%af%e5%9d%a6%e6%94%af%e4%bb%98%e6%8e%a5%e5%8f%a3%e5%af%b9%e6%8e%a5\/"},"wordCount":42,"commentCount":0,"publisher":{"@id":"https:\/\/www.deekpay.com\/#organization"},"articleSection":["\u5df4\u57fa\u65af\u5766\u652f\u4ed8"],"inLanguage":"ko-KR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.deekpay.com\/2025\/06\/23\/%e7%94%a8php%ef%bc%8fnode-js%e5%ae%9e%e7%8e%b0%e5%b7%b4%e5%9f%ba%e6%96%af%e5%9d%a6%e6%94%af%e4%bb%98%e6%8e%a5%e5%8f%a3%e5%af%b9%e6%8e%a5\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.deekpay.com\/2025\/06\/23\/%e7%94%a8php%ef%bc%8fnode-js%e5%ae%9e%e7%8e%b0%e5%b7%b4%e5%9f%ba%e6%96%af%e5%9d%a6%e6%94%af%e4%bb%98%e6%8e%a5%e5%8f%a3%e5%af%b9%e6%8e%a5\/","url":"https:\/\/www.deekpay.com\/2025\/06\/23\/%e7%94%a8php%ef%bc%8fnode-js%e5%ae%9e%e7%8e%b0%e5%b7%b4%e5%9f%ba%e6%96%af%e5%9d%a6%e6%94%af%e4%bb%98%e6%8e%a5%e5%8f%a3%e5%af%b9%e6%8e%a5\/","name":"\u7528PHP\uff0fNode.js\u5b9e\u73b0\u5df4\u57fa\u65af\u5766\u652f\u4ed8\u63a5\u53e3\u5bf9\u63a5 - 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-23T06:19:45+00:00","dateModified":"2025-06-23T06:19:45+00:00","breadcrumb":{"@id":"https:\/\/www.deekpay.com\/2025\/06\/23\/%e7%94%a8php%ef%bc%8fnode-js%e5%ae%9e%e7%8e%b0%e5%b7%b4%e5%9f%ba%e6%96%af%e5%9d%a6%e6%94%af%e4%bb%98%e6%8e%a5%e5%8f%a3%e5%af%b9%e6%8e%a5\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.deekpay.com\/2025\/06\/23\/%e7%94%a8php%ef%bc%8fnode-js%e5%ae%9e%e7%8e%b0%e5%b7%b4%e5%9f%ba%e6%96%af%e5%9d%a6%e6%94%af%e4%bb%98%e6%8e%a5%e5%8f%a3%e5%af%b9%e6%8e%a5\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.deekpay.com\/2025\/06\/23\/%e7%94%a8php%ef%bc%8fnode-js%e5%ae%9e%e7%8e%b0%e5%b7%b4%e5%9f%ba%e6%96%af%e5%9d%a6%e6%94%af%e4%bb%98%e6%8e%a5%e5%8f%a3%e5%af%b9%e6%8e%a5\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u9996\u9875","item":"https:\/\/www.deekpay.com\/"},{"@type":"ListItem","position":2,"name":"\u7528PHP\uff0fNode.js\u5b9e\u73b0\u5df4\u57fa\u65af\u5766\u652f\u4ed8\u63a5\u53e3\u5bf9\u63a5"}]},{"@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\/3366","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=3366"}],"version-history":[{"count":1,"href":"https:\/\/www.deekpay.com\/ko\/wp-json\/wp\/v2\/posts\/3366\/revisions"}],"predecessor-version":[{"id":3367,"href":"https:\/\/www.deekpay.com\/ko\/wp-json\/wp\/v2\/posts\/3366\/revisions\/3367"}],"wp:attachment":[{"href":"https:\/\/www.deekpay.com\/ko\/wp-json\/wp\/v2\/media?parent=3366"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.deekpay.com\/ko\/wp-json\/wp\/v2\/categories?post=3366"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.deekpay.com\/ko\/wp-json\/wp\/v2\/tags?post=3366"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}