Ir para conteúdo

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

Jorge Guberte

Existe algo equivalente ao var_dump ou print_r do PHP no AS3?

Recommended Posts

function print_a( obj, indent ) {
	if (indent == null) indent = "";
	var out = "";
	for ( item in obj ) {
		if (typeof( obj[item] ) == "object" )
			out += indent+"[" + item + "] => Object\n";
		else
			out += indent+"[" + item + "] => " + obj[item]+"\n";
		out += print_a( obj[item], indent+"   " );
	}
	return out;
}
// example call
trace( print_a( example_array ) );

fonte: http://codesnippets.joyent.com/posts/show/633

 

base de pesquisa:

http://www.bing.com/search?q=print_r+actionscript&form=QBLH&scope=web&qs=n

 

 

veja também:

http://dev.base86.com/solo/47/actionscript_3_equivalent_of_phps_printr.html

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.