Home > Backend Development > PHP Tutorial > PHP如果实现自定义公式

PHP如果实现自定义公式

WBOY
Release: 2016-06-23 14:38:39
Original
1753 people have browsed it

如题,已用PHP实现把用户自定义($a+$b*2-3*$c)的计算公式存到mysql表中,然后需要计算时,从表中读取公式,但现在读取出来后,无法用这个公式了,被当成字符串了,要怎么处理,变量在公式读取出前已经预设置好了


回复讨论(解决方案)

用eval()函数试试

用eval()函数试试 用这个可以了,还有其它方法不

https://github.com/droptable/php-shunting-yard.git

https://github.com/droptable/php-shunting-yard.git 这是什么?能不能说清楚一点

直接eval()函数就可。


https://github.com/droptable/php-shunting-yard.git 这是什么?能不能说清楚一点 你看一下他的说明就知道了,那是一个表达式解析器

一般使用 eval 函数就可以了

如果害怕 eval 也可以写在 create_function 的参数中

看这个eval 就想起一句话木马

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template