Improved www.ttss.krakow.pl
Jacek Kowalski
2017-03-17 c1a99dc452f8612ca7b1e341a65f685f7b495883
Set explicit character encoding in each mb_* function invocation
1 files modified
4 ■■■■ changed files
stops/download_stops.php 4 ●●●● patch | view | raw | blame | history
stops/download_stops.php
@@ -2,7 +2,7 @@
if(php_sapi_name() !== 'cli') die();
$chars = 'aąbcćdeęfghijklłmnńoóprsśtuvwxyzżź0123456789';
$len = mb_strlen($chars);
$len = mb_strlen($chars, 'UTF-8');
$replacements = [
    'Ó' => 'Ó',
@@ -14,7 +14,7 @@
$stops = [];
for($i = 0; $i < $len; $i++) {
    for($j = 0; $j < $len; $j++) {
        $char = mb_substr($chars, $i, 1).mb_substr($chars, $j, 1);
        $char = mb_substr($chars, $i, 1, 'UTF-8').mb_substr($chars, $j, 1, 'UTF-8');
        $json = file_get_contents('http://www.ttss.krakow.pl/internetservice/services/lookup/autocomplete/json?query='.urlencode($char));
        $elements = json_decode($json, 1);
        foreach($elements as $element) {