TypePHP 编译器 https://swoole.com/aot/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

25 lines
621 B

--TEST--
string_method: match
--FILE--
<?php
function main()
{
require __DIR__ . '/../../../src/Assert.php';
$str = 'foobarbaz';
$regex1 = '/(foo)(bar)(baz)/';
$matches = $str->match($regex1, PREG_OFFSET_CAPTURE);
preg_match($regex1, $str, $matches2, PREG_OFFSET_CAPTURE);
Assert::eq($matches, $matches2);
$html = "<b>bold text</b><a href=howdy.html>click me</a>";
$regex2 = "/(<([\w]+)[^>]*>)(.*?)(<\/\\2>)/";
preg_match_all($regex2, $html, $matches2, PREG_SET_ORDER);
$matches = $html->matchAll($regex2, PREG_SET_ORDER);
Assert::eq($matches, $matches2);
}
?>
--EXPECT--