什么时候在php中eval evil?
在我用PHP开发的这些年里,我一直听说使用是邪恶的。eval()
考虑到以下代码,使用第二个(也是更优雅)选项难道没有意义吗?如果不是,为什么?
// $type is the result of an SQL statement, e.g.
// SHOW COLUMNS FROM a_table LIKE 'a_column';
// hence you can be pretty sure about the consistency
// of your string.
$type = "enum('a','b','c')";
// option one
$type_1 = preg_replace('#^enum\s*\(\s*\'|\'\s*\)\s*$#', '', $type);
$result = preg_split('#\'\s*,\s*\'#', $type_1);
// option two
eval('$result = '.preg_replace('#^enum#','array', $type).';');