Batch script to replace PHP short open tags with <?php - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T14:09:30Z http://stackoverflow.com/feeds/question/684587 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/684587/batch-script-to-replace-php-short-open-tags-with-php 3 Batch script to replace PHP short open tags with <?php Polypheme 2009-03-26T05:09:05Z 2009-11-13T14:26:34Z <p>Hello everyone,</p> <p>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.</p> <pre><code>change "&lt;?" into "&lt;?php" </code></pre> <p>I think this regular expression will properly select them :</p> <pre><code>&lt;\?(\s|\n|\t|[^a-zA-Z]) </code></pre> <p>which takes care of cases like</p> <pre><code>&lt;?// &lt;?/* </code></pre> <p>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.</p> <p>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)<br /> Maybe I'm wrong.<br /> Or maybe this could be a one liner?</p> <p>Thank you for your help.</p> http://stackoverflow.com/questions/684587/batch-script-to-replace-php-short-open-tags-with-php/684604#684604 2 Answer by Kent Fredric for Batch script to replace PHP short open tags with <?php Kent Fredric 2009-03-26T05:17:14Z 2009-03-26T06:34:07Z <p>My previous answer I just overwrote with sed wont work, sed is too weak for this sort of thing IMO. </p> <p>So I've whipped up a perl-script that should do the trick, its hopefully very user-editable. </p> <pre><code>#!/usr/bin/perl use strict; use warnings; use File::Find::Rule; use Carp; my @files = File::Find::Rule-&gt;file()-&gt;name('*.php')-&gt;in('/tmp/foo/bar'); for my $file (@files) { rename $file, $file . '.orig'; open my $output, '&gt;', $file or Carp::croak("Write Error with $file $! $@ "); open my $input, '&lt;', $file . '.orig' or Carp::croak("Read error with $file.orig $! $@"); while ( my $line = &lt;$input&gt; ) { # Replace &lt;?= with &lt;?php echo $line =~ s/&lt;\?=/&lt;?php echo /g; # Replace &lt;? ashded with &lt;?php ashed $line =~ s/&lt;\?(?!php|xml)/&lt;?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'; } </code></pre> <p>But note, I haven't tested this on any real code, so It could go "Bang" . </p> <p>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 <em>certain</em> its doing the right thing without a fully fledged FSM parser. </p> http://stackoverflow.com/questions/684587/batch-script-to-replace-php-short-open-tags-with-php/684638#684638 0 Answer by Paulo for Batch script to replace PHP short open tags with <?php Paulo 2009-03-26T05:36:02Z 2009-03-26T05:36:02Z <p>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.</p> <p>I used Coda (or any other web editor) to do a simple find and replace on very specific strings. </p> <p>For example starting with " <p>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.</p> http://stackoverflow.com/questions/684587/batch-script-to-replace-php-short-open-tags-with-php/684752#684752 10 Answer by ax for Batch script to replace PHP short open tags with <?php ax 2009-03-26T06:51:39Z 2009-11-13T14:26:34Z <p>don't use regexps for parsing formal languages - you'll always run into haystacks you did not anticipate. like:</p> <pre><code>&lt;? $bla = '?&gt; now what? &lt;?'; </code></pre> <p>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 <a href="http://php.net/tokenizer" rel="nofollow">tokenizer extension</a>. it has the <a href="http://php.net/tokens" rel="nofollow"><code>T_OPEN_TAG</code></a> parser token, which matches <code>&lt;?php</code>, <code>&lt;?</code> or <code>&lt;%</code>, and <a href="http://php.net/tokens" rel="nofollow"><code>T_OPEN_TAG_WITH_ECHO</code></a>, which matches <code>&lt;?=</code> or <code>&lt;%=</code>. to replace all short open tags, you find all these tokens and replace <code>T_OPEN_TAG</code> with <code>&lt;?php</code> and <code>T_OPEN_TAG_WITH_ECHO</code> with <code>&lt;?php echo </code> .</p> <p>the implementation is left as an exercise for the reader :)</p> <p><strong>EDIT 1</strong>: ringmaster was so kind to <a href="http://stackoverflow.com/questions/684587/batch-script-to-replace-php-short-open-tags-with-php/1647429#1647429">provide one</a>.</p> <p><strong>EDIT 2</strong>: on systems with <a href="http://php.net/ini.core#ini.short-open-tag" rel="nofollow"><code>short_open_tag</code></a> turned off in <code>php.ini</code>, <code>&lt;?</code>, <code>&lt;%</code>, and <code>&lt;?=</code> won't be recognized by a replacement script. to make the script work on such systems, enable <code>short_open_tag</code> via command line option:</p> <pre><code>php -d short_open_tag=On short_open_tag_replacement_script.php </code></pre> <p>p.s. <a href="http://php.net/token-get-all" rel="nofollow">the man page for token_get_all()</a> and googleing for creative combinations of <em>tokenizer</em>, *token_get_all*, and the parser token names might help.</p> <p>p.p.s. see also <a href="http://stackoverflow.com/questions/645862/regex-to-parse-define-contents-possible/645957">Regex to parse define() contents, possible?</a> here on SO</p> http://stackoverflow.com/questions/684587/batch-script-to-replace-php-short-open-tags-with-php/684757#684757 1 Answer by Dan Fego for Batch script to replace PHP short open tags with <?php Dan Fego 2009-03-26T06:54:43Z 2009-03-26T06:54:43Z <p>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.</p> <p>Let's say you're sitting in the base directory of your code, you could start with:</p> <pre><code>find . -iname "*.php" -print0 </code></pre> <p>That will get you all .php files, separated by NULL characters, which is necessary in case any of them have spaces.</p> <p> <pre><code>find . -iname "*.php" -print0 | xargs -0 -I{} sed -n 's/\(&lt;\?\)\([^a-zA-Z]\)/\1php\2/gp' '{}' </code></pre> <p>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.</p> <p>Okay, if your results look correct, then you take the big step, which is replacing the files in-place. <strong>You should definitely back up all your files before attempting this!!!</strong></p> <pre><code>find . -iname "*.php" -print0 | xargs -0 -I{} sed -i 's/\(&lt;\?\)\([^a-zA-Z]\)/\1php\2/g' '{}' </code></pre> <p>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:</p> <ol> <li>Grab all the files with "find"</li> <li>Send that list of files to "xargs" (which does some command on the files one at a time</li> <li>Use "sed" and the syntax 's/to-change/changed/' to put your regex magic to work!</li> </ol> http://stackoverflow.com/questions/684587/batch-script-to-replace-php-short-open-tags-with-php/684963#684963 0 Answer by vartec for Batch script to replace PHP short open tags with <?php vartec 2009-03-26T08:40:57Z 2009-03-26T08:55:16Z <p>It's typical for XML/XHTML pages to include following code:</p> <pre><code>&lt;?php echo '&lt;?xml version="1.0" encoding="UTF-8" ?&gt;'; ?&gt; </code></pre> <p>Of course that should not be changed neither to:</p> <pre><code>&lt;?phpphp echo '&lt;?phpxml version="1.0" encoding="UTF-8" ?&gt;'; ?&gt; </code></pre> <p>nor:</p> <pre><code>&lt;?php echo '&lt;?phpxml version="1.0" encoding="UTF-8" ?&gt;'; ?&gt; </code></pre> http://stackoverflow.com/questions/684587/batch-script-to-replace-php-short-open-tags-with-php/1647429#1647429 1 Answer by ringmaster for Batch script to replace PHP short open tags with <?php ringmaster 2009-10-30T00:44:03Z 2009-10-30T00:44:03Z <p>If you're using the tokenizer option, this might be helpful:</p> <pre><code>$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 .= '&lt;?php echo '; break; case T_OPEN_TAG: $output .= '&lt;?php '; break; default: $output .= $code; break; } } else { $output .= $token; } } return $output; </code></pre> <p>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.</p>