Skip to content

A short script that reads a PHP source file, and replaces unquoted array indexes with single-quoted array indexes.

License

Notifications You must be signed in to change notification settings

GustavBertram/php-array-index-fixer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

php-array-index-fixer

This script parses a PHP source file and replaces unquoted array indexes with single-quoted array indexes.

It will fix the following:

 $a[b] = 'c';

While not breaking the following:

$b = "$a[b]";
$c = " \"$a[b]\" ";
$d = $e[$f->g];

It was meant to be invoked as follows:

php aif.php <source_file>

On Linux or Cygwin, the following commandline script will invoke aif.php on all PHP source files in a directory, including subfolders:

find . -type f -iname '*.php' -exec php aif.php {} \;

License

Copyright 2012 Gustav Bertram

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.

About

A short script that reads a PHP source file, and replaces unquoted array indexes with single-quoted array indexes.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages