vote up 3 vote down star
1

Hello everyone,

I have a large collection of php files written over the years and I need to properly replace all the short open tags into proper explicit open tags.

change "<?" into "<?php"

I think this regular expression will properly select them :

<\?(\s|\n|\t|[^a-zA-Z])

which takes care of cases like

<?//
<?/*

but I am not sure how to process a whole folder tree + detect the .php file extension + apply the regular expression + save the file it it has been changed.

I have the feeling this can be pretty straightforward if you master the right tools. (There is an interesting hack in the sed manual : 4.3 Example/Lowercase to Uppercase)
Maybe I'm wrong.
Or maybe this could be a one liner?

Thank you for your help.

flag

75% accept rate
Does your script handle <?= (the equivalent of <?php echo)? – Andrew Hedges Mar 26 at 6:56
No it does not (as far as I remember), but I guess it would be good to take this syntax into account, in order to get a solution useful for anybody. – Polypheme Mar 26 at 7:14

6 Answers

vote up 1 vote down

If you're using the tokenizer option, this might be helpful:

$content = file_get_contents($file);
$tokens = token_get_all($content);
$output = '';

foreach($tokens as $token) {
 if(is_array($token)) {
  list($index, $code, $line) = $token;
  switch($index) {
   case T_OPEN_TAG_WITH_ECHO:
    $output .= '<?php echo ';
    break;
   case T_OPEN_TAG:
    $output .= '<?php ';
    break;
   default:
    $output .= $code;
    break;
  }

 }
 else {
  $output .= $token;
 }
}
return $output;

Note that the tokenizer will not properly tokenize short tags if short tags aren't enabled. That is, you can't run this code on the system where short tags aren't working. You must run it elsewhere to convert the code.

link|flag
see my last comment on stackoverflow.com/questions/684587/… for how to make it work on systems with short_open_tag = Off, too. – ax Nov 9 at 6:26
vote up 0 vote down

It's typical for XML/XHTML pages to include following code:

<?php echo '<?xml version="1.0" encoding="UTF-8" ?>'; ?>

Of course that should not be changed neither to:

<?phpphp echo '<?phpxml version="1.0" encoding="UTF-8" ?>'; ?>

nor:

<?php echo '<?phpxml version="1.0" encoding="UTF-8" ?>'; ?>
link|flag
Of course. The regexp I proposed in my question takes care of this. Kent Fedric also has a working regexp. And ax approach should be fine with it too. – Polypheme Mar 26 at 16:38
vote up 1 vote down

I'm going to streamline your regex for the purposes of this into what may work better, but I may be wrong since I haven't tested it on any real code.

Let's say you're sitting in the base directory of your code, you could start with:

find . -iname "*.php" -print0

That will get you all .php files, separated by NULL characters, which is necessary in case any of them have spaces.

find . -iname "*.php" -print0 | xargs -0 -I{} sed -n 's/\(<\?\)\([^a-zA-Z]\)/\1php\2/gp' '{}'

This should get you most of the way there. It will find all the files, then for each one, run sed to replace the code. However, without the -i tag (used below), this won't actually touch your files, it will just send your code to your terminal. The -n suppresses normal output, and the p after the regex part tells it to print only lines that changed.

Okay, if your results look correct, then you take the big step, which is replacing the files in-place. You should definitely back up all your files before attempting this!!!

find . -iname "*.php" -print0 | xargs -0 -I{} sed -i 's/\(<\?\)\([^a-zA-Z]\)/\1php\2/g' '{}'

That should about get the job done. Unfortunately, I have no PHP files lying around that use that syntax, so you're on your own to figure it out from here, but hopefully the mechanics of getting things done are a bit clearer now:

  1. Grab all the files with "find"
  2. Send that list of files to "xargs" (which does some command on the files one at a time
  3. Use "sed" and the syntax 's/to-change/changed/' to put your regex magic to work!
link|flag
Thank you for your clear explanations, I will definitely have a use for this on a few other problems I have! – Polypheme Mar 26 at 7:12
vote up 10 vote down

don't use regexps for parsing formal languages - you'll always run into haystacks you did not anticipate. like:

<?
$bla = '?> now what? <?';

it's safer to use a processor that knows about the structure of the language. for html, that would be a xml processor; for php, the built-in tokenizer extension. it has the T_OPEN_TAG parser token, which matches <?php, <? or <%, and T_OPEN_TAG_WITH_ECHO, which matches <?= or <%=. to replace all short open tags, you find all these tokens and replace T_OPEN_TAG with <?php and T_OPEN_TAG_WITH_ECHO with <?php echo .

the implementation is left as an exercise for the reader :)

EDIT 1: ringmaster was so kind to provide one.

EDIT 2: on systems with short_open_tag turned off in php.ini, <?, <%, and <?= won't be recognized by a replacement script. to make the script work on such systems, enable short_open_tag via command line option:

php -d short_open_tag=On short_open_tag_replacement_script.php

p.s. the man page for token_get_all() and googleing for creative combinations of tokenizer, *token_get_all*, and the parser token names might help.

p.p.s. see also Regex to parse define() contents, possible? here on SO

link|flag
You definitely have a point here. I need to check this out. (Although I must say I hardly imagine where I would want to echo "<?" without appending "php" anyway) – Polypheme Mar 26 at 7:08
Excellent suggestion. – Bob Somers Mar 26 at 8:43
@Polypheme: <?xml version="1.0" encoding="UTF-8" ?> – Piskvor Mar 26 at 14:35
@Piskvor: yes you are right, but I take care of this in the regex I use. Ok my remark between brackets was just a guess. And I guess that in approximately 100% of my cases the string situation would not be a problem. The "tokens route" is still better/cleaner though. – Polypheme Mar 26 at 16:46
1  
@ringmaster: you are right: it doesn't work w/ ini_set. thinking about it, this makes sense, as this setting is used early, in the parsing phase, before any code, including ini_set, has ever been executed. i thought it would work because it is documented as PHP_INI_ALL - this apparently is a (documentation) bug. there is a way around this, though: just set short_open_tag to On/1 via command line option, like so: php -d short_open_tag=On test.php then it is applied before the parsing state, and your tag replacement script works on systems with short tags turned off, too. – ax Nov 9 at 6:22
show 3 more comments
vote up 0 vote down

I've had to go through this before and I found it best to do it in stages. A bad script trying to catch it all can mess up a LOT of files.

I used Coda (or any other web editor) to do a simple find and replace on very specific strings.

For example starting with "

It may seem a little more tedious but I was confident that something wasn't getting messed up somewhere that I didn't know about. Going back is a real pain.

link|flag
If going back is a real pain, you need proper version control. It shouldn't be. – derobert Mar 26 at 5:47
That is what I did, commited to git then I'd like to use a script. (Kate did the job as you said, it supports "find in files" and then regex replacements one file at a time) – Polypheme Mar 26 at 5:58
@derobert - True. At that time I didn't have any. I now have a proper SVN addiction. – Paulo Mar 26 at 14:05
vote up 2 vote down

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;

        # Replace <? ashded  with <?php ashed

        $line =~ s/<\?(?!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.

link|flag
uhm, will this not make my site fuzzy if i have inline codes like <?=$printme;?> ??? – lock Mar 26 at 5:29
Thank you Kent Fredric, this gives me an idea on how to link find results and a sed command. But I'm afraid we're not there yet. – Polypheme Mar 26 at 5:39
You could probably get away with using the glob() function instead of using File::Find::Rule. It should do the same thing in less space. – Chris Lutz Mar 26 at 5:42
I could use glob, but glob can do strange things when file names have spaces in them. the recommendation these days for Modern Perl is to use File::Find::Rule as far as I can make ok, its concise and meaningful.( Not to mention filters out directories ;) ) – Kent Fredric Mar 26 at 5:44
[ P.s. I tried to apply my knowledge here of good practices to make the code "good" and "easy to understand" and "Easy to maintain", as opposed to golfing it : ) ] – Kent Fredric Mar 26 at 5:45
show 8 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.