I have a file called "file.php" contained lines like this (not only) :
...
define("META_PAGE_BRAND_HOME_TITLE","esta es la Marca");
define("META_PAGE_BRAND_HOME_DESCRIPTION","Conoce nuestra Marca y empieza con la web ");
define("META_PAGE_BRAND_HOME_KEYWORDS","Marca Logo Mision");
...
I would like to get this:
{
"meta_page_brand_home_title":"esta es la Marca",
"meta_page_brand_home_description":"Conoce nuestra Marca y empieza con la web ",
"meta_page_brand_home_keywords":"Marca Logo Mision"
}
I would like to rewrite those only the lines beginning with "define(" into the console or a new file , caps in the first part should be lowercase . I know I should do something like this but I'm not that sharp to achieve so. Any help would be appreciated.