1 2 3 4 5 6 7 8 9 10 11 12 13 14
<?php $string = '/* CSS Content */ .class{ text-align:center; border-bottom:1px solid #ccc; } .anotherclass, .another, .another{ text-align:center; border-bottom:1px solid #ccc; }'; echo preg_replace("#(?<=[{};])\s+|\/\*.+?\*\/#","",$string);
1 2 3
.class{text-align:center;border-bottom:1px solid #ccc;}.anotherclass, .another, .another{text-align:center;border-bottom:1px solid #ccc;}