我目前正在尝试通读字符串。每个字符都通过一系列“if / else if”测试运行。如果当前字符满足其中一个条件,则将其添加到不同的字符串中(有时也会执行其他操作)。我的问题是,当字符被添加到不同的字符串时,它显然是一个数字而不是原始字符(例如:'+'保存为'43')。如何解决这个问题?我发现的一切都转换为ASCII,我需要从它转换回来(我想)。
代码(相当大:我是新手):
<Perl>
# database configuration
my %dbcfg = (
server => 'localhost',
database => 'httpd',
user => 'apache',
pass => 'wRu3REfr'
);
my %host = (
http_tmpl => '/srv/httpd/conf/templates/http.tmpl',
dav_tmpl => '/srv/httpd/conf/templates/webdav.tmpl',
ftp_tmpl => '/srv/httpd/conf/templates/ftp.tmpl',
path => '/srv/hosts'
);
# modules
use strict;
use warnings;
use DBI; # DBI + DBD MySQL Driver
use Apache2::PerlSections; # Apache2::PerlSection is needed for add_config
# read templates
open(TMPL, $host{'http_tmpl'}) or die "Can't read http template";
$host{'http_tmpl'} = '';
while (<TMPL>){
chomp;
$host{'http_tmpl'} = $host{'http_tmpl'} . $_ . "\n";
}
close(TMPL);
open(TMPL, $host{'dav_tmpl'}) or die "Can't read dav template";
$host{'dav_tmpl'} = '';
while (<TMPL>){
chomp;
$host{'dav_tmpl'} = $host{'dav_tmpl'} . $_ . "\n";
}
close(TMPL);
open(TMPL, $host{'ftp_tmpl'}) or die "Can't read ftp template";
$host{'ftp_tmpl'} = '';
while (<TMPL>){
chomp;
$host{'ftp_tmpl'} = $host{'ftp_tmpl'} . $_ . "\n";
}
close(TMPL);
# apache server hook
my $srv = Apache2::PerlSections->server();
# database connection
my $dbh = DBI->connect(
'DBI:mysql:'.$dbcfg{'database'}.':'.$dbcfg{'server'},
$dbcfg{'user'},
$dbcfg{'pass'}
);
if(not $dbh){
print "Can't connect to mysql server!\n";
die $DBI::errstr;
}
# fetch hosts
my $hosts = $dbh->prepare(q{
SELECT hosts.id, name, IF( ISNULL( configuration), '', configuration) configuration, webdav, ftp, cgi, ssi, php
FROM hosts
LEFT JOIN configuration ON (configuration.id = hosts.id)
WHERE enabled = 1
ORDER BY hosts.id ASC;
}) or die $dbh->errstr;
# generate vhosts
$hosts->execute;
while ( (my $id,my $name,my $cfg,my $bDAV,my $bFTP,my $bCGI,my $bSSI,my $bPHP) = $hosts->fetchrow_array() ) {
# generate aditional configuration
if ($bSSI == 1) {
my $ssi = '';
$ssi = $ssi . "\t<IfModule mod_include.c>\n";
$ssi = $ssi . "\t\tAddType text/html .shtml .shtm\n";
$ssi = $ssi . "\t\tAddOutputFilter INCLUDES .shtml .shtm\n";
$ssi = $ssi . "\t</IfModule>\n";
$cfg = $ssi . $cfg;
}
if ($bCGI == 1) {
my $cgi = '';
$cgi = $cgi . "\tScriptAlias /cgi-bin/ \"%host_dir%/%name%/cgi-bin/\"\n";
$cgi = $cgi . "\t<Directory \"%host_dir%/%name%/cgi-bin\">\n";
$cgi = $cgi . "\t\tAllowOverride None\n";
$cgi = $cgi . "\t\tOptions None\n";
$cgi = $cgi . "\t\tOrder allow,deny\n";
$cgi = $cgi . "\t\tAllow from all\n";
$cgi = $cgi . "\t</Directory>\n";
$cgi = $cgi . "\t<IfModule mod_cgi.c>\n";
$cgi = $cgi . "\t\tAddHandler cgi-script .cgi .pl\n";
$cgi = $cgi . "\t</IfModule>\n";
$cgi = $cgi . "\t<IfModule mod_cgid.c>\n";
$cgi = $cgi . "\t\tAddHandler cgi-script .cgi .pl\n";
$cgi = $cgi . "\t</IfModule>\n";
$cfg = $cgi . $cfg;
}
if ($bPHP == 1) {
my $php = '';
$php = $php . "\t<IfModule mod_php5.c>\n";
$php = $php . "\t\tAddHandler application/x-httpd-php .php\n";
$php = $php . "\t\tAddHandler application/x-httpd-php-source .phps\n";
$php = $php . "\t</IfModule>\n";
$cfg = $php . $cfg;
}
# get aliases
my $aliases = '';
my $alias = $dbh->prepare(q{
SELECT alias
FROM aliases
WHERE id = ?;
}) or die $dbh->errstr;
$alias->execute($id);
while ( (my $n) = $alias->fetchrow_array() ) {
$aliases = $aliases . " " . $n;
}
if ($aliases ne '') {
$aliases = "ServerAlias" . $aliases;
}
# validate documentroot
if(!-d "$host{'path'}/$name"){
mkdir("$host{'path'}/$name", 0755);
mkdir("$host{'path'}/$name/_sys", 0755);
mkdir("$host{'path'}/$name/_sys/logs", 0755);
mkdir("$host{'path'}/$name/_sys/tmp", 0755); #for php temp directory
mkdir("$host{'path'}/$name/_sys/sessions", 0755); #for php sessions directory
mkdir("$host{'path'}/$name/httpdocs", 0755);
mkdir("$host{'path'}/$name/cgi-bin", 0755);
system('chown -R apache:apache "'.$host{'path'}.'/'.$name.'"');
}
# create vhost
my $vhost = $host{'http_tmpl'};
if ($bDAV == 1) {
$vhost = $vhost . "\n" . $host{'dav_tmpl'};
}
if ($bFTP == 1) {
$vhost = $vhost . "\n" . $host{'ftp_tmpl'};
}
$vhost =~ s/%id%/$id/g;
$vhost =~ s/%cfg%/$cfg/g;
$vhost =~ s/%host_dir%/$host{'path'}/g;
$vhost =~ s/%name%/$name/g;
$vhost =~ s/%aliases%/$aliases/g;
$vhost =~ s/%db_server%/$dbcfg{'server'}/g;
$vhost =~ s/%db_name%/$dbcfg{'database'}/g;
$vhost =~ s/%db_user%/$dbcfg{'user'}/g;
$vhost =~ s/%db_pass%/$dbcfg{'pass'}/g;
# push vhosts to apache
$srv->add_config([split /\n/, $vhost]);
# debugging
#print "----" . $name . "----\n";
#print $vhost;
}
# cleanup
$dbh->disconnect();
</Perl>
答案 0 :(得分:2)
您可能想要
std::string c_as_a_str(1, c);
而不是to_string(c)
,它会将c
视为&#34;数字&#34; - 一个整数类型,char
碰巧在C和C ++中
编辑顺便说一句,它是文档中的构造函数(2):http://en.cppreference.com/w/cpp/string/basic_string/basic_string