|
@@ -23,6 +23,23 @@ class DataXw extends Model
|
|
|
public static function onBeforeWrite(self $model)
|
|
|
{
|
|
|
// return true;
|
|
|
+// $dom = new \DOMDocument();
|
|
|
+// $dom->loadHTML($model['content']);
|
|
|
+
|
|
|
+// 获取所有的 h1 标签
|
|
|
+// $h1Tags = $dom->getElementsByTagName('video');
|
|
|
+ preg_match_all('/<video[^>]*>(.*?)<\/video>/s', $model['content'], $matches);
|
|
|
+// var_dump($matches);die;
|
|
|
+ foreach ($matches as $k => $v){
|
|
|
+ echo htmlspecialchars($v[1]);die;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (isset($matches[1])) {
|
|
|
+ echo "视频标签内容为:" . htmlspecialchars($matches[1]);
|
|
|
+ } else {
|
|
|
+ echo "未找到视频标签";
|
|
|
+ }
|
|
|
+
|
|
|
$model['has_video']=Str::contains($model['content'],'</video>');
|
|
|
if($model['has_video']){
|
|
|
$html=HtmlDomParser::str_get_html($model['content']);
|