File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change 1
1
PHP 4 NEWS
2
2
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3
3
?? ??? 200?, Version 4.2.0-dev
4
+ - Added optional parameter to highlight_string and highlight_file which
5
+ makes these functions return a highlighted string instead of dumping
6
+ to standard output. (Derick)
7
+ - Added EXTR_IF_EXISTS and EXTR_PREFIX_IF_EXISTS flags to extract()
8
+ EXTR_IF_EXISTS only extracts a variable if it already exists
9
+ EXTR_PREFIX_IF_EXISTS only extracts the variable if it exists and
10
+ then it prepends the prefix to it. ie. if $PATH exists then
11
+ extract($_ENV,EXTR_PREFIX_IF_EXISTS,'e') would result in $e_PATH
12
+ This lets you do $a = $b = $c = true; extract($_REQUEST,EXTR_IF_EXISTS);
13
+ and you only get the global request variables you have defined imported
14
+ into your symbol table. (Rasmus)
4
15
- Fixed pg_pconnect(). It catches broken connection and reconnects to PostgreSQL
5
16
server always. When PostgreSQL is rebooted, web server reboot is not needed
6
17
to avoid errors. (Yasuo)
You can’t perform that action at this time.
0 commit comments