root/examples/Fatorial/external.php

User picture

Author: blaine

Revision: 262 («Previous)


File Size: 454 Bytes

(June 29, 2009 05:00 UTC) Almost 3 years ago

the code instrumentation receiver it is using the new match elements created recently

 
Show/hide line numbers
<?php
set_time_limit(0);

$arrBackTrace = debug_backtrace();
$arrCaller = $arrBackTrace[0];
$strFileCaller = $arrCaller[ 'file' ];

eval( '?>' .  file_get_contents( 'http://www.thiagomata.com/codetodiagram/svn/public/external.php' ) );
CodeToDiagram::getInstance()->setExternalAcess( true );
CodeToDiagram::getInstance()->setCallerPathByFile( $strFileCaller );
CodeToDiagram::init( basename( $strFileCaller ) );
CodeToDiagram::getInstance()->start();
?>