The simplest cross-engine equivalent to what you wrote:
<cfhttp url="http://www.google.com/" />
<cfset html = cfhttp.FileContent />
<cfoutput>#html#</cfoutput>
You can specify an alternative to the automatically generated cfhttp variable as follows:
<cfhttp url="http://www.google.com/" result="Response" />
<cfset html = Response.FileContent />
<cfoutput>#html#</cfoutput>
Both of them will work in all major CFML mechanisms ( Adobe CF , OpenBD , Railo ).
(, , ..) cfhttp struct, <cfdump var=#cfhttp#/> ( , var).
, Railo, , PHP, :
<cfset html = FileRead('http://www.google.com/') />
<cfoutput>#html#</cfoutput>
, Railo ( ), , , , HTTP, ZIP, RAM .
(Adobe , , , .)