Vulkan
Vulkan

Reputation: 1074

Where can I find a PHP editor with text format that actually works?

I'm using TextWrangler and I can't find a good code formatter. I tried TextMate and it ruined my code completely.

I don't care about anything else other than a button that formats the text. From this:

function hello() {

if ($statement) {

die();

}

}

To this:

function hello() {

    if ($statement) {

        die();

    }

}

Without having to press "Tab" 4 times.

Upvotes: -8

Views: 103

Answers (1)

Akar
Akar

Reputation: 5395

First of all, Your question is opinion based, so there is not a real answer.

But, if you want a text editor then use Sublime Text.

It's very powerful. and very customizeable.

After you've installed it, you can create a shortcut to indent your code.

The link is here.

Upvotes: 1

Related Questions