Hi, everyone. So, suppose I have a variable holding a string, like
I wanna be able to numerically integrate that string - I wanna be able to, inside a for statement, calculate ln(x) for some values of x. How do I make PHP understand the value of the string as a statement? Thanks in advance!
Code:
$var = "ln(x)";
Comment