Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个从文件中获取的字符串公式:
$text = "100*20";
我想找到一种方法将此公式转换为结果,例如值为 200。这可能使用 php 吗?
使用eval()。
$expression = '100*20'; eval('$result = ('.$expression.')'); echo $result;
确保调查周围的安全问题eval();。
eval();
由于数据来自文件,它可能没问题,但如果它是用户输入 - 不要。