{"id":1353,"date":"2004-10-14T08:46:19","date_gmt":"2004-10-14T08:46:19","guid":{"rendered":"http:\/\/dev.jblove.net\/?p=1353"},"modified":"2004-10-14T08:46:19","modified_gmt":"2004-10-14T08:46:19","slug":"%eb%b0%b0%ec%97%b4-%ec%8a%a4%ed%81%ac%eb%a6%bd%ed%8a%b8-%ec%a2%85%ed%95%a9%ec%84%a0%eb%ac%bc%ec%84%b8%ed%8a%b8","status":"publish","type":"post","link":"https:\/\/jblove.net\/?p=1353","title":{"rendered":"\ubc30\uc5f4 \uc2a4\ud06c\ub9bd\ud2b8 \uc885\ud569\uc120\ubb3c\uc138\ud2b8"},"content":{"rendered":"<p>\nhttp:\/\/mygony.com<br \/>\n http:\/\/mygony.com\/tt\/index.php?pl=84&#038;nc=1<\/p>\n<p>\ub450\ubc88\uc9f8 \uc885\ud569\uc120\ubb3c\uc138\ud2b8.<br \/>\n\uad6c\ud604\uc774 \uadf8\ub2e4\uc9c0 \uc5b4\ub824\uc6b4 \uac83\ub4e4\uc740 \uc544\ub2c8\uc9c0\ub9cc, \uac00\ub054 \uc0ac\uc6a9\ud558\ub2e4\ubcf4\uba74 \uadc0\ucc2e\uc544\uc9c8\ub54c\uac00 \uc788\ub294 \ubc30\uc5f4\uad00\ub828 \uc2a4\ud06c\ub9bd\ud2b8\uc785\ub2c8\ub2e4. \ub300\ubd80\ubd84 php \ud568\uc218\uc758 \uba85\uba85\uaddc\uce59\uc744 \ub530\ub790\uc73c\ubbc0\ub85c, \uc5b4\ub5a4 \uc5ed\ud560\uc744 \ud558\ub294\uac74\uc9c0 \uad6c\uccb4\uc801\uc73c\ub85c \uc54c\uace0 \uc2f6\ub2e4\uba74 PHP \ud568\uc218\uc5d0\uc11c Array Functions \uc7a5\uc744 \ucc38\uace0\ud558\uba74 \ub429\ub2c8\ub2e4.<\/p>\n<p>\/\/<br \/>\n\/\/      Array method library<br \/>\n\/\/    by \ud589\ubcf5\ud55c\uace0\ub2c8 (20041012)<br \/>\n\/\/<\/p>\n<p>\/\/ \ubc30\uc5f4\uc5d0 \uac80\uc0c9\ud55c \uac12\uc774 \uc788\uc73c\uba74 \uc778\ub371\uc2a4 \ubc88\ud638\ub97c \ub9ac\ud134, \uc5c6\uc73c\uba74 -1\uc744 \ub9ac\ud134<br \/>\nArray.prototype.search = function(val) {<br \/>\n       var len = this.length;<\/p>\n<p>       for (var i=0; i < len; i++) {<br \/>\n              if (this[i] == val) return i;<br \/>\n       }<\/p>\n<p>       return -1;<br \/>\n}<\/p>\n<p>\/\/ search \uba54\uc18c\ub4dc\uc640 \uac19\uc73c\ub098 \ub300\uc18c\ubb38\uc790 \uad6c\ubcc4\uc548\ud568<br \/>\nArray.prototype.isearch = function(val) {<br \/>\n       var len = this.length;<\/p>\n<p>       if ((typeof val).toLowerCase() == &#8216;string&#8217;) val = val.toLowerCase();<br \/>\n       for (var i=0; i < len; i++) {<br \/>\n              if (typeof this[i] != typeof val) continue;<br \/>\n              if ((typeof val).toLowerCase() == &#8216;string&#8217; &#038;&#038; val == this[i].toLowerCase()) return i;<br \/>\n              else if (val == this[i]) return i;<br \/>\n       }<br \/>\n       return -1;<br \/>\n}<\/p>\n<p>\/\/ \ud0a4 \ubc30\uc5f4\uc744 \ubc1b\uc544\uc11c \ubb38\uc790\uc5f4 \uc778\ub371\uc2a4\uac00 \uc788\ub294 \uac1d\uccb4\ub97c \ubc18\ud658\ud55c\ub2e4.<br \/>\n\/\/ \ub9cc\uc77c \ubc30\uc5f4\uc758 \ud06c\uae30\uac00 \uc11c\ub85c \ub9de\uc9c0 \uc54a\uc73c\uba74 \ube48 array\uac00 \ubc18\ud658\ub41c\ub2e4.<br \/>\n\/\/ \ub9ac\ud134\uac12\uc740 object<br \/>\nArray.prototype.combine = function(keyArr) {<br \/>\n       if (this.length != keyArr.length) return [];<\/p>\n<p>       var ret = {};<br \/>\n       for (var i=0; i < this.length; i++) ret[keyArr[i]] = this[i];\n\n\n       return ret;<br \/>\n}<\/p>\n<p>\/\/ \ubc94\uc704\uc758 \uac12\uc744 \ud3ec\ud568\ud558\uace0 \uc788\ub294 \ubc30\uc5f4 \ubc18\ud658<br \/>\nArray.prototype.range = function(Low, High, Step) {<br \/>\n       var ret = [];<br \/>\n       var t1 = (typeof Low).toLowerCase();<br \/>\n       var t2 = (typeof High).toLowerCase();<\/p>\n<p>       if (Step == undefined) Step = 1;<br \/>\n       if (!((t1 == &#8216;number&#8217; || t1 == &#8216;string&#8217;) &#038;&#038; t1 == t2)) return ret;<br \/>\n       if (t1 == &#8216;string&#8217;) { Low = Low.charCodeAt(0); High = High.charCodeAt(0); }<\/p>\n<p>       for (var i=Low; i <= High; i+=Step) ret[ret.length] = (t1=='string')?String.fromCharCode(i):i;\n\n\n       return ret;<br \/>\n}<\/p>\n<p>\/\/ \ubc30\uc5f4\uc758 \uac01 \uc694\uc18c\uc5d0 \uac19\uc740 \ud568\uc218 \uc801\uc6a9<br \/>\n\/\/ \ub9cc\uc57d, funcName \uc774\ub77c\ub294 \ud568\uc218\uac00 \uc788\ub2e4\uace0 \ud558\uba74, Array.walk(funcName)\uacfc \uac19\uc774 \uc0ac\uc6a9\ud55c\ub2e4.<br \/>\n\/\/ \ud568\uc218\uc758 \uccab\ubc88\uc9f8 \uc804\ub2ec\uc790\uc5d0 \uac12\uc774, \ub450\ubc88\uc9f8 \uc804\ub2ec\uc790\uc5d0 \uc778\ub371\uc2a4\uac00 \uc804\ub2ec\ub41c\ub2e4.<br \/>\nArray.prototype.walk = function(Func) {<br \/>\n       var len = this.length;<br \/>\n       for (var i=0; i<len; i++) {<br \/>\n              this[i] = Func(this[i], i);<br \/>\n       }<br \/>\n}<\/p>\n<p>\/\/ \ubc30\uc5f4 \uc815\ub82c \uc21c\uc11c\ub97c \uac70\uafb8\ub85c \ud55c\ub2e4.<br \/>\n\/\/ \uc0ac\uc6a9\uc790 \ud568\uc218\ub97c \uc9c0\uc815\ud558\uba74 \uc9c0\uc815\ud55c \ud568\uc218\ub85c \uc815\ub82c\ud55c\ub2e4.<br \/>\nArray.prototype.rsort = function(sortFunc) {<br \/>\n       if (sortFunc == undefined) this.sort();<br \/>\n       else this.sort(sortFunc);<br \/>\n       return this.reverse();<br \/>\n}<\/p>\n<p>\/\/ \ubc30\uc5f4\ub0b4\uc5d0 \uc874\uc7ac\ud558\ub294 \uc22b\uc790\ub97c \ubaa8\ub450 \ub354\ud55c\ub2e4.<br \/>\nArray.prototype.sum = function() {<br \/>\n       var ret = 0;<br \/>\n       for (var i=0; i<this.length; i++) {<br \/>\n              if((typeof this[i]).toLowerCase() == &#8216;number&#8217;) ret += this[i];<br \/>\n       }<\/p>\n<p>       return ret;<br \/>\n}<\/p>\n<p>\/\/ \ud604\uc7ac \ubc30\uc5f4\uc694\uc18c\ub97c \ubc18\ud658\ud55c\ub2e4.<br \/>\nArray.prototype.current = function() {<br \/>\n       if (this._index > this.length) this._index = this.length;<br \/>\n       return this[this._index];<br \/>\n}<\/p>\n<p>\/\/ \ud604\uc7ac \ubc30\uc5f4\uc694\uc18c\uc758 \uc774\uc804\uc694\uc18c\ub85c \ud3ec\uc778\ud130\ub97c \uc774\ub3d9\ud558\uace0 \uc774\uc804\uc694\uc18c\ub97c \ubc18\ud658\ud55c\ub2e4.<br \/>\nArray.prototype.prev = function() {<br \/>\n       if (&#8211;this._index < 0) this._index++;<br \/>\n       return this[this._index];<br \/>\n}<\/p>\n<p>\/\/ \ud604\uc7ac \ubc30\uc5f4\uc694\uc18c\uc758 \ub2e4\uc74c\uc694\uc18c\ub85c \ud3ec\uc778\ud130\ub97c \uc774\ub3d9\ud558\uace0 \ub2e4\uc74c\uc694\uc18c\ub97c \ubc18\ud658\ud55c\ub2e4.<br \/>\nArray.prototype.next = function() {<br \/>\n       if (++this._index >= this.length) this._index&#8211;;<br \/>\n       return this[this._index];<br \/>\n}<\/p>\n<p>\/\/ \ubc30\uc5f4\uc758 \ucc98\uc74c \uc694\uc18c\ub85c \ud3ec\uc778\ud130\ub97c \uc774\ub3d9\ud558\uace0 \uc694\uc18c\ub97c \ubc18\ud658\ud55c\ub2e4.<br \/>\nArray.prototype.first = function() {<br \/>\n       this._index = 0;<br \/>\n       return this[0];<br \/>\n}<\/p>\n<p>\/\/ \ubc30\uc5f4\uc758 \ub9c8\uc9c0\ub9c9 \uc694\uc18c\ub85c \ud3ec\uc778\ud130\ub97c \uc774\ub3d9\ud558\uace0 \uc694\uc18c\ub97c \ubc18\ud658\ud55c\ub2e4.<br \/>\nArray.prototype.end = function() {<br \/>\n       this._index = this.length &#8211; 1;<br \/>\n       return this[this._index];<br \/>\n}<\/p>\n<p>\/\/ \ud604\uc7ac \ud0a4\ub97c \ubc18\ud658\ud55c\ub2e4.<br \/>\nArray.prototype.key = function() {<br \/>\n       if (this._index < 0) this._index = 0;<br \/>\n       else if (this.length > 0 &#038;&#038; this._index >= this.length) this._index = this.length &#8211; 1;<br \/>\n       return this._index;<br \/>\n}<\/p>\n<p>Array.prototype._index = 0; <\/p>\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>http:\/\/mygony.com http:\/\/mygony.com\/tt\/index.php?pl=84&#038;nc=1 \ub450\ubc88\uc9f8 \uc885\ud569\uc120\ubb3c\uc138\ud2b8. \uad6c\ud604\uc774 \uadf8\ub2e4\uc9c0 \uc5b4\ub824\uc6b4 \uac83\ub4e4\uc740 \uc544\ub2c8\uc9c0\ub9cc, \uac00\ub054 \uc0ac\uc6a9\ud558\ub2e4\ubcf4\uba74 \uadc0\ucc2e\uc544\uc9c8\ub54c\uac00 \uc788\ub294 \ubc30\uc5f4\uad00\ub828 \uc2a4\ud06c\ub9bd\ud2b8\uc785\ub2c8\ub2e4. \ub300\ubd80\ubd84 php \ud568\uc218\uc758 \uba85\uba85\uaddc\uce59\uc744 \ub530\ub790\uc73c\ubbc0\ub85c, \uc5b4\ub5a4 \uc5ed\ud560\uc744 \ud558\ub294\uac74\uc9c0 \uad6c\uccb4\uc801\uc73c\ub85c \uc54c\uace0 \uc2f6\ub2e4\uba74 PHP \ud568\uc218\uc5d0\uc11c Array Functions \uc7a5\uc744 \ucc38\uace0\ud558\uba74 \ub429\ub2c8\ub2e4. \/\/ \/\/ Array method library \/\/ by \ud589\ubcf5\ud55c\uace0\ub2c8 (20041012) \/\/ \/\/ \ubc30\uc5f4\uc5d0 \uac80\uc0c9\ud55c \uac12\uc774 \uc788\uc73c\uba74 \uc778\ub371\uc2a4 \ubc88\ud638\ub97c \ub9ac\ud134, \uc5c6\uc73c\uba74 -1\uc744 \ub9ac\ud134 Array.prototype.search [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"footnotes":""},"categories":[51],"tags":[],"class_list":["post-1353","post","type-post","status-publish","format-standard","hentry","category-papa-php"],"aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/jblove.net\/index.php?rest_route=\/wp\/v2\/posts\/1353","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jblove.net\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jblove.net\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jblove.net\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/jblove.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1353"}],"version-history":[{"count":0,"href":"https:\/\/jblove.net\/index.php?rest_route=\/wp\/v2\/posts\/1353\/revisions"}],"wp:attachment":[{"href":"https:\/\/jblove.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1353"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jblove.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1353"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jblove.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1353"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}