Thread Suche und Ersetzen von <?php und <!-- (15 answers)
Opened by newperler at 2011-04-26 19:20

pq
 2011-04-26 21:26
#148015 #148015
User since
2003-08-04
12208 Artikel
Admin1
[Homepage]
user image
also hier funktioniert das wunderbar:
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
$ perl -wE'
$s = q{anfang <?php
echo get_pfad();
?> ende};
$s =~ s/(<\?php.*?\?>)/ /gsi;
say $s;'
anfang ende

$ perl -wE'
$s = q{anfang <?php echo "Aktualisierung am ".date("d.m.Y",filemtime(basename($_SERVER["PHP_SELF"]))); ?> ende};
$s =~ s/(<\?php.*?\?>)/ /gsi;
say $s;'
anfang ende
Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. -- Damian Conway in "Perl Best Practices"
lesen: Wiki:Wie frage ich & perlintro Wiki:brian's Leitfaden für jedes Perl-Problem

View full thread Suche und Ersetzen von <?php und <!--