pdllbq/yii2-proxylist-hidemyass-com-parser

There is no license information available for the latest version (v1.0.0) of this package.

Parse proxy from http://proxylist.hidemyass.com/

v1.0.0 2015-09-19 01:21 UTC

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());
	}

}