We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
The following code:
<?php namespace NS; class Test { public function test() { return preg_match('foo', 'bar'); } } $test = new Test(); $test->test();
Resulted in this output (JIT 1211):
object(NS\Test)#1 (0) { } Warning: NS\Test::test(): Delimiter must not be alphanumeric, backslash, or NUL byte in /tmp/test.php on line 6
But I expected this output instead:
object(NS\Test)#1 (0) { } Warning: preg_match(): Delimiter must not be alphanumeric, backslash, or NUL byte in /tmp/test.php on line 6
nightly
ubuntu 22.04
The text was updated successfully, but these errors were encountered:
Duplicate of your other report #15981 again
Sorry, something went wrong.
No branches or pull requests
Description
The following code:
Resulted in this output (JIT 1211):
But I expected this output instead:
PHP Version
nightly
Operating System
ubuntu 22.04
The text was updated successfully, but these errors were encountered: