webman_ad/README.md
2024-12-11 18:30:32 +08:00

31 lines
821 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

## BPS Ads项目
### 简介
BPS ads项目是一个基于Google Ads API的广告管理系统使用PHP webman框架开发。该项目提供了一个简单的API允许用户创建、管理和优化广告活动。
```
my_project/
├── app/
│ ├── controller/
│ │ └── GoogleAdsController.php
│ ├── model/
│ │ └── Campaign.php
│ │ └── CampaignBudget.php
│ │ └── AdGroup.php
│ │ └── Ad.php
│ ├── service/
│ │ └── GoogleAdsService.php
│ └── routes.php
├── config/
│ ├── google_ads_php.ini
│ └── database.php
├── public/
│ └── index.php
├── vendor/
│ └── (composer dependencies)
├── .env
└── composer.json```