This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| phpinfo() | |
| PHP Version => 5.5.12-2+deb.sury.org~precise+1 | |
| System => Linux niemand-X75VD 3.2.0-34-generic #53-Ubuntu SMP Thu Nov 15 10:48:16 UTC 2012 x86_64 | |
| Build Date => May 12 2014 13:44:37 | |
| Server API => Command Line Interface | |
| Virtual Directory Support => disabled | |
| Configuration File (php.ini) Path => /etc/php5/cli | |
| Loaded Configuration File => /etc/php5/cli/php.ini | |
| Scan this dir for additional .ini files => /etc/php5/cli/conf.d |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function A() { | |
| } | |
| var prot = A.prototype; | |
| prot.a = function () { | |
| console.log('A::a()'); | |
| } | |