Dreamweaver and custom php functions
Posted: Sun Nov 30, 2003 10:02 pm
This one is for you Dreamweaver MX veterans.
I've been using Dreamweaver for quite some time now. Though I hate the fact that it hogs a good chunk of my resources, no other editor can compete with it's features (that I've used anyway). One feature that I would like this thing to have is recognition of custom made php functions.
Like if you have a page such as these:
index.php
inc.php
...Dreamweaver will detect custom functions and add proper syntax highlighting to it. Currently it doesn't do that for me.
Is there a setting that will enable this some where in this prog? I've searched around with no luck.
I've been using Dreamweaver for quite some time now. Though I hate the fact that it hogs a good chunk of my resources, no other editor can compete with it's features (that I've used anyway). One feature that I would like this thing to have is recognition of custom made php functions.
Like if you have a page such as these:
index.php
Code: Select all
<?php
include "./inc.php";
$var = 1;
echo customfunction($var);
?>Code: Select all
<?php
function customfunction($var)
{
$var = $var + 1;
return $var;
}
?>Is there a setting that will enable this some where in this prog? I've searched around with no luck.