我已经看到这个
Does variable name length matter for performance C#?主题,并有关于PHP的相同问题.
我的同事(前端)已被编码为$o,$r,$x,$m,$c等所有内容,并激发了它的最佳性能.我真的很怀疑它,代码变得难以阅读.
> $o – 对象或对象
> $m – $model
> $r – $query_result或$result
> $x – $xml_node
每件事看起来都像
if ( isset ( self::$o[ self::$x -> name ] ) ) : $c = 'ClassPrefix_' . self::$o[ self::$x -> name ]; $o = new $c; self::$x -> read ( );