Skip to content

Commit 5018f60

Browse files
authored
Link to wiki
1 parent 272a812 commit 5018f60

File tree

1 file changed

+3
-37
lines changed

1 file changed

+3
-37
lines changed

README.md

Lines changed: 3 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -33,45 +33,11 @@ print_r($apps);
3333
?>
3434
```
3535

36-
### How to action as a crawler and find more applications?
36+
Read more at [wiki](https://github.com/BaseMax/GooglePlayWebServiceAPI/wiki).
3737

38-
```php
39-
$alphas = range('A', 'Z');
40-
foreach($alphas as $alpha) {
41-
$apps=$google->parseSearch($alpha);
42-
insertApps($apps);
43-
}
44-
```
38+
#### How to action as a crawler and find more applications?
4539

46-
Or:
47-
```php
48-
$alphas = range('A', 'Z');
49-
foreach($alphas as $alpha) {
50-
$apps=$google->parseSearch($alpha);
51-
insertApps($apps);
52-
foreach($alphas as $alpha2) {
53-
$apps=$google->parseSearch($alpha.$alpha2);
54-
insertApps($apps);
55-
}
56-
}
57-
```
58-
59-
It's more:
60-
```php
61-
$alphas = range('A', 'Z');
62-
foreach($alphas as $alpha) {
63-
$apps=$google->parseSearch($alpha);
64-
insertApps($apps);
65-
foreach($alphas as $alpha2) {
66-
$apps=$google->parseSearch($alpha.$alpha2);
67-
insertApps($apps);
68-
foreach($alphas as $alpha3) {
69-
$apps=$google->parseSearch($alpha.$alpha2.$alpha3);
70-
insertApps($apps);
71-
}
72-
}
73-
}
74-
```
40+
https://github.com/BaseMax/GooglePlayWebServiceAPI/wiki/Search
7541

7642
### Application Structure
7743

0 commit comments

Comments
 (0)