- 移除多个测试文件中的 --CREDITS-- 和 --SKIPIF-- 部分 - 修改 bug73817.phpt 添加缺失的输出标记 ===DONE=== - 更新 chunk_split_variation4.phpt 中的跳过条件注释并移除问题测试用例 - 修改 fprintf_error.phpt、gh18823_strict.phpt 等多个测试的跳过原因 - 在 heredoc.phpt 中添加新的基本测试用例 - 修复 implode_basic.phpt 中的函数调用参数 - 更新多个测试文件的跳过条件以更好地描述AOT限制 - 调整 strpull/2/head
parent
ed9462bb49
commit
f45dadc2f8
28 changed files with 49 additions and 76 deletions
@ -0,0 +1,19 @@ |
||||
--TEST-- |
||||
any |
||||
--FILE-- |
||||
<?php |
||||
function main() |
||||
{ |
||||
// heredoc with different white space characters |
||||
$heredoc_escchar = <<<EOT6 |
||||
This checks\t chunk_split()\nEscape\nchars |
||||
EOT6; |
||||
|
||||
var_dump(chunk_split($heredoc_escchar, strlen($heredoc_escchar)) ); |
||||
} |
||||
?> |
||||
--EXPECT-- |
||||
string(45) " This checks chunk_split() |
||||
Escape |
||||
chars |
||||
" |
||||
Loading…
Reference in new issue