• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Anyone use DreamWeaver for PHP?

Penth

Senior member
Is there a way to enable or addon a list of php functions so when you start typing str it'll show strpos and any other function that starts with str in the same way it does stylesheet and html parameters?
 
PHP doesn't have a simple set of functions like HTML does, and I don't think it would be very viable to try and make a list of them.
 
I don't mean that it would include user-created functions. Just the default library functions. They're all listed on php.net and when you type the function name in dreamweaver it displays the arguments so they're already in the program. I would think they could list them as you type...
 
I use Dreamweaver every day and it's very customizable. I've created a lot of menu items on the php tab that will insert many of the commonly used php functions and control structures with a click from a drop down list. With a click I insert all of my generic comment info and copyright notice that goes on every page. I've got all sorts of tools, manuals and pdf books available from a menu.

That being said, I've never looked at creating the autocomplete for the php functions but it might be able to be done. I'll have to look into it when I get the time.
 
Back
Top