解析错误:语法错误,第 20 行 .../test6_2.php 中出现意外的“新”(T_NEW)
只是试图保存和修复来自 PHPBench.com
并点击此错误(网站已关闭,作者未回复问题)。这是来源:
<?php
// Initial Configuration
class SomeClass {
function f() {
}
}
$i = 0; //fix for Notice: Undefined variable i error
// Test Source
function Test6_2() {
//global $aHash; //we don't need that in this test
global $i; //fix for Notice: Undefined variable i error
/* The Test */
$t = microtime(true);
while($i < 1000) {
$obj =& new SomeClass();
++$i;
}
usleep(100); //sleep or you'll return 0 microseconds at every run!!!
return (microtime(true) - $t);
}
?>
它是否是有效的语法?如果我错了,请纠正我,但认为它创建了对SomeClass的引用,因此我们可以调用...提前感谢您的帮助new $obj()