I have lot of code that has arrays like $test[keyhere]. Is there any way (in text editor for example) that could automatic correct this like $test['keyhere'].
Example:
echo "This is test variable: $test[keyhere] and...";
to this:
echo "This is test variable: ".$test['keyhere']." and...";