pdllbq / yii2-proxylist-hidemyass-com-parser
Parse proxy from http://proxylist.hidemyass.com/
Installs: 267
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 1
Open Issues: 0
Type:yii2-extension
Requires
- yiisoft/yii2: *
This package is not auto-updated.
Last update: 2025-10-01 14:31:28 UTC
README
Parse proxy from proxylist.hidemyass.com extension for Yii2
Installation
The preferred way to install this extension is through composer. Either run
php composer.phar require pdllbq/yii2-proxylist-hidemyass-com-parser
or add
"pdllbq/yii2-proxylist-hidemyass-com-parser": "*"
to the require section of your composer.json
file.
Usage
use pdllbq\phcparser\Parser;
$data=Parser::getProxy();
$data- is array with proxys
Usage exemple
<?php namespace app\controllers; use yii\web\Controller; use pdllbq\phcparser\Parser; class ProxyController extends Controller { public function actionIndex() { print_r(Parser::getProxy()); } }