Invoke a property alert(this); //window var a = { b : function(){ return this; } }; a.b(); //a; a['b'](); //a; var c = {}; c.d = a.b; c.d() //c Invoke a variable var a = { b : function() { return this; } }; var foo = a.b; foo() // window var a = { b: function(){ var c = function() { return this; } return c(); } }; a.b(); //window var a = { b : function() { return (function() { return this;})() }..
String.prototype.split(separator, limit) "85@@86@@53".split("@@"); //['85', '86', '53']; "bannana".split(); //["banana"]; "원,투,쓰리".split(",",2); // ["원","투"] Array.prototype.join(separator) 배열을 스트링으로 변환 합니다. ["slugs","snails","puppy dog's tails"].join(' and '); //"slugs and snails and puppy dog's tails" ['Giants', 4, 'Rangers', 1].join(' '); //"Giants 4 Rangers 1" [1962,1989,2002,2010].join(); /..
session_set_cookie_params - 세션 쿠키 인수 설정 void session_set_cookie_params ( int $lifetime [, string $path [, string $domain [, bool $secure [, bool $httponly ]]]] ) php.ini 파일에 정의된 쿠키 인수를 설정합니다. 이 함수의 효과는 호출한 스크립트에서만 적용됩니다. 그러므로, 매 요청마다 session_start() 호출 전에 session_set_cookie_params()를 호출해야 합니다. path : 쿠키가 작동할 도메인의 경로. 도메인의 모든 경로에 적용하려면 하나의 슬래시('/')를 사용합니다 domain : 쿠키 도메인, 예를 들면 'www.php.net'. 모든 ..
*Framework 활용 Eclipse 설치 구성 1. JRE(Java SE Runtime Environment) 2. Ecilpse PDT All In Ones 3. Subversive 4. Eclipse Perferences & Configuration  5. 윈도우용 tortoiseSvn 6. postgrsql * xampp 다운로드 xampp 1.7.3 최신 버전 설치 PHP.INI 설정 extension=php_pdo_pgsql.dll extension=php_curl.dll zend_extension = "C:\xampp\php\ext\php_xdebug.dll" 해지 [XDebug] debug.remote_enable=1 zend_debugger.allow_hosts=127.0.0.1..