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.
我想执行一个字符串,就好像它是 PHP 代码一样。
一个例子是:
$string='round(24.6,2)';
我想转换$string为可执行语法。有没有办法做到这一点?
$string
您可以使用eval('round(24.6,2)'),但由于多种原因,这通常不受欢迎。你为什么要这样做?
eval('round(24.6,2)')
eval()
是你想要的功能。但是: eval() 是邪恶的!