Jump to content

[SOLVED] Function Names stored in Array


electricshoe

Recommended Posts

I'm storing java and php functions in one array.

 

The java functions are just added to a string that is echoed in. I need the php functions to be executed if they are php functions.

 

Is there anyway to check if a variable is a php function and then execute that function if it is?

 

Thanks very much in advance!

Link to comment
https://forums.phpfreaks.com/topic/82719-solved-function-names-stored-in-array/
Share on other sites

Something like:

 

<?php
function somefunction(){
echo 'foo<br />';
}
function anotherfunction(){
echo 'bar<br />';
}
$array = array('somefunction','notafunction','anotherfunction');
foreach($array as $v){
if(function_exists($v)){
	eval($v.'();');
}
}
?>

 

Should do it for you.

Beautiful, thanks very much.

 

foreach($java as $var)
{		
if function_exists($var);	
{
	eval($var);
}
else
{
	echo $var.' ';
}
}

 

I'm building html elements with functions. I'm doing form fields right now I'm loading in java functions, but some of the java functions are built through php functions (Depending on if they need ajax stuff or not).

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.