mirror of
https://github.com/php/php-src.git
synced 2024-11-25 19:05:31 +08:00
24 lines
457 B
Awk
24 lines
457 B
Awk
# $Id$
|
|
|
|
/^[ \t]*php3_*/ {
|
|
phpcommand=substr($1,6)
|
|
phpvalue=tolower($2)
|
|
print "<IfModule mod_php3.c>"
|
|
print $0
|
|
print "</IfModule>"
|
|
print "<IfModule mod_php4.c>"
|
|
if (phpvalue=="on") {
|
|
print "php_admin_flag " phpcommand " on"
|
|
} else if (phpvalue=="off") {
|
|
print "php_admin_flag " phpcommand " off"
|
|
} else {
|
|
print "php_admin_value " phpcommand " " substr($0,index($0,$1)+length($1)+1)
|
|
}
|
|
print "</IfModule>"
|
|
}
|
|
|
|
! /^[ \t]*php3_*/ {
|
|
print $0
|
|
}
|
|
|