hello guyes I have CSS code and I'm trying to find a way to get only the CSS Class's name Only and clear coma and open&close tag and value and put it into an array in PHP
Example:
.dungarees {
content: "\ef04";
}
.jacket {
content: "\ef05";
}
.jumpsuit {
content: "\ef06";
}
.shirt {
content: "\ef07";
}
and I want to do a a function with PHP to convert it into an array like this
$my_array('dungarees','jacket','jumpsuit','shirt');
is there any function with php or even jquery to deal with this? thanks
div.jacketor.jacket.smallShould those be included or ignored. Please provide more details about what you are trying to accomplish and what you have tried.