summaryrefslogtreecommitdiff
path: root/ext/standard/info.c
Commit message (Collapse)AuthorAgeFilesLines
* Correct carset if iconv is activeMarcus Boerger2002-08-051-2/+16
| | | | | #Same solution would work for mbstring - but that must wait
* -Send charset US-ASCII or ini setting default_charset.Marcus Boerger2002-08-041-2/+8
| | | | | | #After some discussion with Ilia Alshanetsky #But perhaps we should have a look for a mbstring solution...
* ups.. :)Georg Richter2002-08-041-1/+1
|
* added meta tag (w3c compliance)Georg Richter2002-08-041-1/+1
| | | | | Thx to Ilia Alshanetsky (ilia@prohost.org)
* - No C++ commentsDerick Rethans2002-07-011-7/+7
|
* Made the API versions appear better on phpinfo();Sander Roobol2002-06-191-11/+6
|
* - Since streams are always enabled, instead of just printing 'enabled' we tellMarkus Fischer2002-06-081-1/+31
| | | | | what streams are currently registered.
* Fix <head> and <body> tags in phpinfo() output (#17411)Sander Roobol2002-05-241-3/+3
|
* - Fix a buglet in printing of GPCSE arraysZeev Suraski2002-05-131-5/+5
| | | | | - Remove indirect access
* - Centralize html_puts() againZeev Suraski2002-05-131-0/+3
| | | | | - Revolutionize phpinfo()'s speed
* Use string_len informationSascha Schumann2002-05-121-1/+1
|
* reenable php_html_putsSascha Schumann2002-05-121-6/+7
|
* Centralize html_puts() logic - php_html_puts() remains as an API wrapperZeev Suraski2002-05-111-5/+5
|
* - Add PHP_API_VERSION tooDerick Rethans2002-05-091-0/+3
|
* - Show both API nosDerick Rethans2002-05-091-3/+6
|
* Fixing wrong pointerFrank M. Kromann2002-05-021-1/+1
|
* - Add Zend API No. to phpinofo() outputDerick Rethans2002-05-021-0/+6
|
* (PHP php_uname) display runtime uname rather than compile-time uname, addedStig Bakken2002-03-291-16/+70
| | | | | | | | an optional parameter to get single fields (like uname(1)) # Windows version is not tested, and I didn't know how to get # `uname -n` on Windows, so it's hardcoded to "localhost" for now. # Windows gurus feel free to fix. :-)
* New PHP streams...Wez Furlong2002-03-151-3/+1
|
* Change case for consistencyZeev Suraski2002-03-141-2/+2
|
* Make it clearer what this entry meansZeev Suraski2002-03-141-2/+2
|
* Add apparently missing includeSascha Schumann2002-03-041-0/+1
|
* Supply php_html_puts which escapes a whole string.. now fully works in ZTSSascha Schumann2002-03-041-5/+6
| | | | | mode, too.
* revert last commit, puts does more through putc.Sascha Schumann2002-03-041-5/+5
|
* Use PHPWRITE to output data. Because this just outputs diagnosticSascha Schumann2002-03-041-5/+5
| | | | | | | | information, a few spaces won't hurt (and multiple ones are rendered as one by browsers anyway). Micro-benchmarks which use phpinfo() as a mean to generate output will yield more through-put now (35 req/s vs. 83 req/s in tux).
* Maintain headers.Sebastian Bergmann2002-02-281-1/+1
|
* PHP 4.0 -> PHP 4. Patch by Martin Jansen <mail@martin-jansen.de>.Sebastian Bergmann2001-12-291-1/+1
|
* Update headers.Sebastian Bergmann2001-12-111-2/+2
|
* use PHP_INFO_ALL and PHP_CREDITS_ALL instead of hardcoding themSterling Hughes2001-12-061-2/+2
|
* * zend_module_entry change: apino, debug and zts are moved first,Stig Bakken2001-10-111-5/+16
| | | | | | see README.EXTENSIONS file for upgrade help. @Introduced extension version numbers (Stig)
* - <br> -> <br />Derick Rethans2001-10-061-2/+2
|
* 2nd phase in back-substitution those macro'sJeroen van Wolffelaar2001-09-251-1/+1
| | | | | I've got pretty much everything now...
* Back-substitute for Z_* macro's. If it breaks some extension (the script ↵Jeroen van Wolffelaar2001-09-251-12/+12
| | | | isn't optimal, it parses for example var->zval.value incorrect) please let me know.
* - Don't wrap lines... this is annoying while coding.Derick Rethans2001-09-091-2/+2
|
* Add the build time too. Bug: #12774foobar2001-08-151-1/+1
|
* Fix crashes in parse_parameters callsZeev Suraski2001-08-131-2/+4
| | | | | | | HEADS UP: Make sure you supply TSRMLS_CC for this function! I'll try to think of a way that'd allow us to find this issue using the compiler.
* Track down a few more functions that don't check for 0 args and useRasmus Lerdorf2001-08-131-12/+18
| | | | | faster mechanism
* Oops, a little too much simplification there.. ;)Rasmus Lerdorf2001-08-131-0/+2
|
* We don't consistently check for args passed to functions that don'tRasmus Lerdorf2001-08-131-35/+33
| | | | | | | | | take any args. In some cases we probably want to skip the check for performance reasons, but in other cases where performance is unlikely to be a factor, not throwing a warning on the wrong number of args passed to a function is at best inconsistent, and at worst it could hide a bug. So, add a few such checks. There are still lots of cases out there.
* WhitespaceZeev Suraski2001-08-111-10/+10
|
* - Implement $_FORMZeev Suraski2001-08-081-6/+7
| | | | | | - Update phpinfo() - Update NEWS
* More TSRMLS_FETCH workZeev Suraski2001-07-311-4/+3
|
* More TSRMLS_FETCH workZeev Suraski2001-07-301-3/+2
|
* More TSRMLS_FETCH work, and a bit of cleanupZeev Suraski2001-07-301-1/+2
|
* Redesigned thread safety mechanism - nua nuaZeev Suraski2001-07-281-1/+0
|
* - Get rid of ELS_*(), and use TSRMLS_*() instead.Zeev Suraski2001-07-271-9/+9
| | | | | | | - Move to the new ts_allocate_id() API This patch is *bound* to break some files, as I must have had typos somewhere. If you use any uncommon extension, please try to build it...
* Finish phpinfo() HTML 4.01 tweaking.Sebastian Bergmann2001-06-191-11/+11
|
* Make output of phpinfo() compliant with HTML 4.01.Sebastian Bergmann2001-06-151-39/+37
|
* Fix folding and clean up some extensionsRasmus Lerdorf2001-06-061-12/+26
|
* vim-6 does folding - clean up a bunch of missing folding tags plusRasmus Lerdorf2001-06-051-0/+1
| | | | | some misguided RINIT and RSHUTDOWN calls in a few fringe extensions