vote up 1 vote down star
2

I know, I know - obfuscated html/js code is useless (I read the other questions on SO), but I still want to make life harder for copy-cats of my site...

I'm running a php based website, which generates html output. I would like the FINAL html output (which has html, js, json and uses ajax) to be obfuscated. Is there a php function for that purpose? I found http://www.ioncube.com/html%5Fencoder.php but that relies on some of their special software to be loaded on the server - ie, a no-go...

Any suggestions?

flag

70% accept rate
1  
I hate to say it, but there's a hundred and one different products out there to reformat HTML, and it's trivial to make one. This question is utterly pointless. – Matthew Scharley Oct 21 at 11:22
6  
I didn't really have any problems viewing their page with firebug, though... :\ – peirix Oct 21 at 11:23
I agree this is a silly question. What makes you think you are so special, when loads of really good designers/developers (Zeldman, Shea, Cederholm etc.) don't obfuscate their HTML? – meanstreakuk Oct 21 at 11:32
Like many others has said: Don't bother. If someone wants to look at your code they can do so with the right tool. It is a lost battle. You will spend more time trying to obfuscate than someone who want to look at your code. Also, you pages will not be indexed by search enginges, your pages requires javascript. I took a peek on ioncube and saw that their code is slow (and very slow on IE). It took less than 2 minutes to make it more than twice as fast on all browsers and even faster on IE (didn't bother to profile how much) – some Oct 21 at 13:13

4 Answers

vote up 0 vote down

You should have a look at Minify it has a Minify_HTML class removing whitespace, unnecessary comments and tokens

link|flag
vote up 2 vote down

Not true obfuscation, but rather hard to read in most cases (and less bandwidth-intensive as well!)

<?php
ob_start();

// Generate output here

$output = ob_get_contents();
ob_end_clean();

$output = preg_replace('\s{2,}',' ', $output);
echo $output;
?>
link|flag
+1 .. I think you said first while I was typing – Xinus Oct 21 at 11:35
What about text in <pre> tags ? – Pierre Bourdon Oct 21 at 11:42
I only use compressed css and JavaScript not for obfuscation but for reducing size, but for html you can take care of it in callback function.. – Xinus Oct 21 at 11:49
@delroth: No support whatsoever for <pre> tags, I'm afraid. I guess it could be done relatively easily, using either an HTTP parser or a slightly more interesting regexp, but then again, how often are <pre> elements used nowadays, outside of sites that allow posting code, like SO? Also, nice name. :P – Duroth Oct 21 at 11:52
If you want to reduce the size even more, check if the browser supports on-the-fly compression and compress the data. – some Oct 21 at 11:55
show 2 more comments
vote up 1 vote down

No, php couldn't do that without something on the client side. You could always have some javascript decode it, but that wouldnt be friendly to whoever has it turned off, it would be slow and no search engine support.

link|flag
vote up 1 vote down

You can compress your JavaScript and css

For php output it can be done using ob_start have a look at this http://ru.php.net/manual/en/function.ob-start.php#71953

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.