no message

This commit is contained in:
hellcat 2025-04-15 22:16:45 +08:00
parent bc3f2d9a81
commit fe55a54160
3 changed files with 9 additions and 1 deletions

View File

@ -28,7 +28,7 @@ class TestsController
//test
// $s = "\/AticleSet__1115zz__sale_rate 1118.118";
$s = "\/test#cron__i 14";
$s = "\/test#cron__i 07";
$oHttp = new Http();
$oHttp->sMethod = "post";

View File

@ -139,4 +139,9 @@ https://clashfreenode.com/feed/clash-".date('Ymd').".yaml
return $sContent;
}
public function Test($aArticle)
{
return "test!!!";
}
}

View File

@ -24,6 +24,9 @@ class Article extends Base {
$aSingle = ModelArticle::find($iId)->toArray();
unset($aSingle['updated_at']);
unset($aSingle['created_at']);
return json_encode($aSingle, JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT);
}