convertcfg.pl

来自「phpMyAdmin图形界面化操作,我已经配置好了,只要把解要压缩后的文件放到站」· PL 代码 · 共 20 行

PL
20
字号
#!/usr/bin/perl## $Id: convertcfg.pl 5152 2003-11-18 15:20:45Z nijel $## Configuration converter# Converts from old-style (Pre-2.3) configuration files to new format found in PMA-2.3## Takes input from STDIN, sends output to STDOUT## By Robin Johnson robbat2@users.sourceforge.net# Many thanks to Patrick Lougheed pat@tfsb.org#while(<>) {	s/\$cfg(\w+)/\$cfg\[\'$1\'\]/g; 	print; 	}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?