We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3bc2cd8 + 0a23626 commit 272a812Copy full SHA for 272a812
README.md
@@ -9,7 +9,7 @@ Tiny script to crawl information of a specific application in the Google play/st
9
- parseCategory
10
- parseCategories
11
- parseApplication
12
-
+- parsePerms
13
14
## Using PHP GooglePlay
15
google-play.php
@@ -255,7 +255,7 @@ public function parseCategories() {
255
* @return array array of package names
256
*/
257
public function parseSearch($query) {
258
- $link = "https://play.google.com/store/search?q=". $query ."&c=apps";
+ $link = "https://play.google.com/store/search?q=". urlencode($query) ."&c=apps";
259
return $this->parse($link);
260
}
261
0 commit comments