Skip to content

Commit

Permalink
Merge branch 'master' of github.com:kkokk/poster
Browse files Browse the repository at this point in the history
  • Loading branch information
kkokk committed Aug 10, 2023
2 parents c627653 + 629b6a3 commit ea7db55
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions tests/server/html.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?php
/**
* User: lang
* Date: 2023/8/9
* Time: 17:12
*/

use Kkokk\Poster\Facades\Html;

require '../../vendor/autoload.php';


$html = <<<eol
<html>
<head>
<title>测试</title>
</head>
<body>
<h1>
测试
</h1>
</body>
</html>
eol;


Html::channel('wk')->load($html)->render();

0 comments on commit ea7db55

Please sign in to comment.