javascript - PHP referencing functions not in a script -


can please explain me can php script functions from, have php script has few lines:

<?php $args1 = array(); $gethosts = get_xml_host_objects($args1); //grabbing internal xml data backend  $args2 = array(); $gethoststatus = get_xml_host_status($args2);  $args3 = array(); $getparenthosts = get_xml_host_parents($args3); 

so not understand , how php script referencing functions, give me few examples suggestions of look?

maybe, there file includes 2 scripts. somethings that

<?php     include 'file_with_function.php';     include 'your_file.php'; ?> 

these lines can help. place them @ beginning of file

echo '<pre>';   debug_print_backtrace();   echo '</pre>'; 

Comments

Popular posts from this blog

c# - How Configure Devart dotConnect for SQLite Code First? -

java - Copying object fields -

c++ - Clear the memory after returning a vector in a function -