We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
when running xhprof with php 5.2 I will get the following error message
PHP Parse error: syntax error, unexpected T_PAAMAYIM_NEKUDOTAYIM in /xhprof/xhprof_lib/utils/xhprof_runs.php on line 250
BUG:
public static function getNextAssoc($resultSet) { $class = self::getDbClass(); return $class::getNextAssoc($resultSet); }
FIX:
public static function getNextAssoc($resultSet) { $class = self::getDbClass(); // return $class::getNextAssoc($resultSet); return call_user_func($class."::getNextAssoc", $resultSet); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
when running xhprof with php 5.2 I will get the following error message
PHP Parse error: syntax error, unexpected T_PAAMAYIM_NEKUDOTAYIM in /xhprof/xhprof_lib/utils/xhprof_runs.php on line 250
BUG:
FIX:
The text was updated successfully, but these errors were encountered: