show/hide this revision's text 3 added 5 characters in body

My previous answer I just overwrote with sed wont work, sed is too weak for this sort of thing IMO.

So I've whipped up a perl-script that should do the trick, its hopefully very user-editable.

#!/usr/bin/perl 

use strict;
use warnings;

use File::Find::Rule;
use Carp;

my @files = File::Find::Rule->file()->name('*.php')->in('/tmp/foo/bar');

for my $file (@files) {
    rename $file, $file . '.orig';
    open my $output, '>', $file or Carp::croak("Write Error with $file $! $@ ");
    open my $input, '<', $file . '.orig'
      or Carp::croak("Read error with $file.orig $! $@");

    while ( my $line = <$input> ) {
        # Replace <?= with <?php echo 
        $line =~ s/<\?=/<?php echo/g;

        echo /g;

        # Replace <? ashded  with <?php ashed

        $line =~ s/<\?(?!php)/<?php/g;
        <\?(?!php|xml)/<?php /g;
        print $output $line;
    }

    close $input  or Carp::carp(" Close error with $file.orig, $! $@");
    close $output or Carp::carp(" Close error with $file  , $! $@");

    unlink $file . '.orig';
}

But note, I haven't tested this on any real code, so It could go "Bang" .

I would recommend you have your code revisioned ( wait, its already revisioned, right? .. right? ) and run your test-suite ( Don't tell me you don't have tests ! ) on the modified code, because you can't be certain its doing the right thing without a fully fledged FSM parser.

show/hide this revision's text 2 added 849 characters in body

Script:

find ./ -type f -name "*.php" -print0 | xargs -0 

My previous answer I just overwrote with sed -i "s/<\?(?!php)/<?php/"

Should wont work, sed is too weak for this sort of thing IMO.

So I've whipped up a perl-script that should do the trick, but I'm not sureits hopefully very user-editable.

#!/usr/bin/perl use strict;use warnings;use File::Find::Rule;use Carp;my @files = File::Find::Rule->file()->name('*.php')->in('/tmp/foo/bar');for my $file (@files) {    rename $file, $file . '.orig';    open my $output, '>', $file or Carp::croak("Write Error with $file $! $@ ");    open my $input, '<', $file . '.orig'      or Carp::croak("Read error with $file.orig $! $@");    while ( my $line = <$input> ) {        # Replace <?= with <?php echo         $line =~ s/<\?=/<?php echo/g;        # Replace <? ashded  with <?php ashed        $line =~ s/<\?(?!php)/<?php/g;        print $output $line;    close $input  or Carp::carp(" Close error with $file.orig, $! $@");    close $output or Carp::carp(" Close error with $file  , $! $@");    unlink $file . '.orig';

But note, I haven't tested this on any real code, so It could go "Bang" .

I would recommend you have your code revisioned ( wait, its already revisioned, right? .. right? ) and run your test-suite ( Don't tell me you don't have tests ! ) on the modified code, because you can't recall if sed supports negative lookahead or notbe certain its doing the right thing without a fully fledged FSM parser.

show/hide this revision's text 1

Script:

find ./ -type f -name "*.php" -print0 | xargs -0 sed -i "s/<\?(?!php)/<?php/"

Should do the trick, but I'm not sure. I can't recall if sed supports negative lookahead or not.